LUCENE-2973: svn-export-source target should call 'svn export --native-eol LF ...'

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1083945 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2011-03-21 20:36:06 +00:00
parent 32c6c7aad4
commit 4a277d65b5
2 changed files with 2 additions and 2 deletions

View File

@ -361,7 +361,7 @@
<delete dir="${svn.export.dir}" includeemptydirs="true" failonerror="false"/>
<mkdir dir="${build.dir}"/>
<exec dir="." executable="svn" failonerror="true">
<arg line="export -r ${svn.Revision} ${svn.URL} ${svn.export.dir}"/>
<arg line="export --native-eol LF -r ${svn.Revision} ${svn.URL} ${svn.export.dir}"/>
</exec>
</target>

View File

@ -763,7 +763,7 @@
<delete dir="${svn.export.dir}" includeemptydirs="true" failonerror="false"/>
<mkdir dir="${dest}"/>
<exec dir="." executable="svn" failonerror="true">
<arg line="checkout -r ${svn.Revision} ${svn.URL} ${svn.export.dir}"/>
<arg line="export --native-eol LF -r ${svn.Revision} ${svn.URL} ${svn.export.dir}"/>
</exec>
</target>