From: jcorgan Date: Sat, 4 Nov 2006 21:04:37 +0000 (+0000) Subject: Added note about line ending styles. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=5a2864573c870ad6f3ff3dc818b3603ff9340618;p=debian%2Fgnuradio Added note about line ending styles. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3930 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/README.hacking b/README.hacking index 46ba0940..1a604395 100644 --- a/README.hacking +++ b/README.hacking @@ -170,6 +170,31 @@ library and into the program. I haven't tested out this idea. We use the standard unittest package for unit testing of Python code. +* Subversion line ending styles + +All text files in the tree should have the subversion property +'svn:eol-style' set to 'native', with the following exceptions: + +config/*.m4 +configure.ac +gr-howto-write-a-block/config/*.m4 +gr-howto-write-a-block/configure.ac + +The easiest way to ensure this is to add or edit the following lines in +your svn client configuration file (~/.subversion/config): + +enable-auto-props=yes + +[auto-props] +*.c = svn:eol-style=native +*.cc = svn:eol-style=native +*.i = svn:eol-style=native +*.h = svn:eol-style=native +*.am = svn:eol-style=native +*.py = svn:eol-style=native +*.ac = svn:eol-style=LF +*.m4 = svn:eol-style=LF + * Misc tips ccache, a compiler cache, can really speed up your builds.