From 2f2984007c9a7097057cadd683ee399db2c7433e Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Thu, 25 Mar 2004 21:01:30 +0000 Subject: [PATCH] No longer needed (use dos2unix or unix2dos! ;-) --- tools/fix-unix.sh | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 tools/fix-unix.sh 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!" -- 2.37.2