You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2010/05/08 00:51:45 UTC

svn commit: r942262 - in /lucene/dev/trunk: build.xml modules/analysis/build.xml

Author: rmuir
Date: Fri May  7 22:51:45 2010
New Revision: 942262

URL: http://svn.apache.org/viewvc?rev=942262&view=rev
Log:
fix the compile target... this never worked for contrib/analyzers before either

Modified:
    lucene/dev/trunk/build.xml
    lucene/dev/trunk/modules/analysis/build.xml

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=942262&r1=942261&r2=942262&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Fri May  7 22:51:45 2010
@@ -37,7 +37,7 @@
   <target name="compile" description="Compile Lucene and Solr">
     <sequential>
       <subant target="compile" inheritall="false" failonerror="true">
-        <!--<fileset dir="lucene" includes="build.xml" /> -->
+        <fileset dir="lucene" includes="build.xml" />
         <fileset dir="modules" includes="build.xml" />
         <fileset dir="solr" includes="build.xml" />
       </subant>

Modified: lucene/dev/trunk/modules/analysis/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/analysis/build.xml?rev=942262&r1=942261&r2=942262&view=diff
==============================================================================
--- lucene/dev/trunk/modules/analysis/build.xml (original)
+++ lucene/dev/trunk/modules/analysis/build.xml Fri May  7 22:51:45 2010
@@ -38,7 +38,8 @@
     <ant dir="stempel" />
   </target>
 
-  <target name="default" depends="common,smartcn,stempel" />
+  <target name="default" depends="compile"/>
+  <target name="compile" depends="common,smartcn,stempel" />
 
   <target name="clean">
     <ant dir="common" target="clean" />