You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2015/05/23 14:04:07 UTC

svn commit: r1681331 - /lucene/dev/trunk/build.xml

Author: uschindler
Date: Sat May 23 12:04:06 2015
New Revision: 1681331

URL: http://svn.apache.org/r1681331
Log:
Fix python3 also in root build.xml (was correct already in common-build.xml)

Modified:
    lucene/dev/trunk/build.xml

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=1681331&r1=1681330&r2=1681331&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Sat May 23 12:04:06 2015
@@ -28,7 +28,7 @@
   <loadproperties srcFile="lucene/version.properties"/>
 
   <!-- define here, as common-build is not included! TODO: maybe include into a property file like the version? -->
-  <property name="python32.exe" value="python3.2" />
+  <property name="python32.exe" value="python3" />
   <property name="args" value=""/>
 
   <!-- other settings: -->