From: (no author) <(no author)> Date: Tue, 8 Jul 2003 19:09:09 +0000 (+0000) Subject: This commit was manufactured by cvs2svn to create branch 'avendor'. X-Git-Tag: 1.0.3~2 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aaa37222bec76a065e74830b363e8c9dfa4709ae;p=virtualjaguar This commit was manufactured by cvs2svn to create branch 'avendor'. --- 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!"