You really only need to fix the Makefiles. As we pointed out before this can be achieved with a single command line, such as (remove possible line breaks introduced by my/your mailer):
find . -name Makefile\* -exec sh -c "echo fixing {}; tr -d '\015' < {} >
tmp && mv tmp {}" \;
or alternatively, using perl:
find . -name Makefile\* -exec perl -pie "s/\r\n/\n/g;" {} \;
--
Arnaud Le Hors - IBM Cupertino, XML Technology Group
