From: Neils Wagenaar Date: Tue, 8 Jul 2003 19:09:09 +0000 (+0000) Subject: Initial revision X-Git-Tag: 1.0.4~7 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe38472e196819be270458a2a3343935fed11b0a;p=virtualjaguar Initial revision --- diff --git a/fix-unix.sh b/fix-unix.sh new file mode 100644 index 0000000..4a1a732 --- /dev/null +++ b/fix-unix.sh @@ -0,0 +1,21 @@ +#! /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!"