You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2011/03/21 21:38:14 UTC

svn commit: r1083947 - in /lucene/dev/branches/lucene_solr_3_1: lucene/build.xml solr/build.xml

Author: sarowe
Date: Mon Mar 21 20:38:14 2011
New Revision: 1083947

URL: http://svn.apache.org/viewvc?rev=1083947&view=rev
Log:
LUCENE-2973: svn-export-source target should call 'svn export --native-eol LF ...'

Modified:
    lucene/dev/branches/lucene_solr_3_1/lucene/build.xml
    lucene/dev/branches/lucene_solr_3_1/solr/build.xml

Modified: lucene/dev/branches/lucene_solr_3_1/lucene/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_1/lucene/build.xml?rev=1083947&r1=1083946&r2=1083947&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_3_1/lucene/build.xml (original)
+++ lucene/dev/branches/lucene_solr_3_1/lucene/build.xml Mon Mar 21 20:38:14 2011
@@ -374,7 +374,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>
 

Modified: lucene/dev/branches/lucene_solr_3_1/solr/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_1/solr/build.xml?rev=1083947&r1=1083946&r2=1083947&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_3_1/solr/build.xml (original)
+++ lucene/dev/branches/lucene_solr_3_1/solr/build.xml Mon Mar 21 20:38:14 2011
@@ -762,7 +762,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>