]> Shamusworld >> Repos - virtualjaguar/commitdiff
No longer needed (use dos2unix or unix2dos! ;-)
authorShamus Hammons <jlhamm@acm.org>
Thu, 25 Mar 2004 21:01:30 +0000 (21:01 +0000)
committerShamus Hammons <jlhamm@acm.org>
Thu, 25 Mar 2004 21:01:30 +0000 (21:01 +0000)
tools/fix-unix.sh [deleted file]

diff --git a/tools/fix-unix.sh b/tools/fix-unix.sh
deleted file mode 100755 (executable)
index 4a1a732..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#! /bin/sh
-#
-#  Sets up the Allegro package for building under Unix, converting text
-#  files from CR/LF to LF format.
-
-
-echo "Converting NeoPocott files to Unix format..."
-
-find . -type f "(" \
-   -name "*.c*" -o -name "*.cfg" -o \
-   -name "*.h" -o -name "*.s" -o \
-   -name "*.txt" -o -name "*.asm" -o \
-   -name "Makefile*" -o -name "readme.*" \
-   ")" \
-   -exec sh -c "echo {};
-               mv {} _tmpfile;
-               tr -d \\\r < _tmpfile > {};
-               touch -r _tmpfile {}; 
-               rm _tmpfile" \;
-
-echo "Done!"