Important Tip For Linux Users!

nikki

10-08-2008 10:46:32

Linux users checking out from SVN should execute the following command from the ogrebullet directory:-
dos2unix `find ./ -type f`
This is because all the line-endings in the files are CRLF, and have to be converted to LF for many things to work.

Best of luck!

igrok

01-02-2009 21:46:15

I found that dos2unix sometimes chokes on a broken file and will not continue. In this case, you can convert the remainder of the files with:

for i in `find . -type f`; do dos2unix "$i"; done

jacmoe

02-02-2009 02:59:23

Looks like Tuan needs to setup SVN to the correct MIME type and EOL settings: eol-style=native.
What happens if you setup your clients this way?
-> http://www.ogre3d.org/wiki/index.php/Subversion_settings :)

igrok

02-02-2009 05:21:36

Unfortunately, the client MIME and EOL settings to not appear to make a difference. I just tried a fresh checkout with the same results.

tuan kuranes

02-02-2009 08:27:23

thanks for pointing out that, I'll change that asap in my setting and try to switch to linux anyway to check if I cant build latest commit I made last week.