From: Shamus Hammons Date: Thu, 25 Mar 2004 21:01:30 +0000 (+0000) Subject: No longer needed (use dos2unix or unix2dos! ;-) X-Git-Tag: 1.0.7~36 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f2984007c9a7097057cadd683ee399db2c7433e;p=virtualjaguar No longer needed (use dos2unix or unix2dos! ;-) --- diff --git a/tools/fix-unix.sh b/tools/fix-unix.sh deleted file mode 100755 index 4a1a732..0000000 --- a/tools/fix-unix.sh +++ /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!"