You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2010/05/05 17:14:56 UTC

svn commit: r941339 - /lucene/dev/trunk/solr/common-build.xml

Author: markrmiller
Date: Wed May  5 15:14:55 2010
New Revision: 941339

URL: http://svn.apache.org/viewvc?rev=941339&view=rev
Log:
revert last change and fix prop name - issue still exists though

Modified:
    lucene/dev/trunk/solr/common-build.xml

Modified: lucene/dev/trunk/solr/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/common-build.xml?rev=941339&r1=941338&r2=941339&view=diff
==============================================================================
--- lucene/dev/trunk/solr/common-build.xml (original)
+++ lucene/dev/trunk/solr/common-build.xml Wed May  5 15:14:55 2010
@@ -210,7 +210,7 @@
       </copy>
   </target>  
   
-  <target name="compile-lucene" unless="${lucene-compiled}">
+  <target name="compile-lucene" unless="lucene-compiled">
     <property name="lucene-compiled" value="true"/>
     <ant antfile="build.xml" target="compile" dir="../modules/analysis/common"/>
     <ant antfile="build.xml" target="compile" dir="../lucene/contrib/highlighter"/>
@@ -296,7 +296,7 @@
     <attribute name="failonerror" default="true"/>
     <sequential>
       <subant target="@{target}" failonerror="@{failonerror}">
-        <property name="lucene-compiled" value="${lucene.compiled}"/>
+        <property name="lucene-compiled" value="${lucene-compiled}"/>
         <fileset dir="."
                  includes="contrib/*/build.xml"
         />