There are many text files in svn that don't have svn:eol-style set to native. When it is set the line endings are corrected for the platform the file is checked out on, newline for Unix, carriage return newline for Dos. When it isn't set the files are Unix style.
For example CMakeModules/FindOSG.cmake doesn't have it set, many of the other source files don't have it set either. svn proplist CMakeModules/FindOSG.cmake CMakeModules/FindOpenThreads.cmake Properties on 'CMakeModules/FindOpenThreads.cmake': svn:eol-style svn propget svn:eol-style CMakeModules/FindOSG.cmake CMakeModules/FindOpenThreads.cmake CMakeModules/FindOpenThreads.cmake - native svn propset svn:eol-style native CMakeModules/FindOSG.cmake property 'svn:eol-style' set on 'CMakeModules\FindOSG.cmake' then commit Here's a shell script command to check a list of files that don't have svn:eol-style set to native. $(find -name \*.cpp) lists 493 files. for a in *; do if [ "`svn propget svn:eol-style $a`" != "native" ] ; then echo $a; fi ; done -- David Fries <[email protected]> http://fries.net/~david/ (PGP encryption key available) _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

