Talk:Compilation Installation

From AMule Project FAQ
Revision as of 00:20, 17 June 2004 by Eijk (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

If you have problems compiling crypto-5.1.tar.bz2 with gcc 2.95.3 it can be due to stray DOS newlines in some files.

Use

file * | grep CRLF | while read file rest; do dos2unix ${file%:}; done

to convert them to UNIX newlines.

eijk