LUCENE-3283: Fixed building of queryparser module dependency: the jar was being built in lucene/contrib/memory/build/ instead of in lucene/modules/queryparser/build/

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1147464 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2011-07-16 17:34:56 +00:00
parent 28028c1488
commit 37d89927cb
1 changed files with 4 additions and 3 deletions

View File

@ -36,8 +36,9 @@
<target name="build-queryparser" unless="queryparser.uptodate"> <target name="build-queryparser" unless="queryparser.uptodate">
<echo>Memory building dependency modules/queryparser</echo> <echo>Memory building dependency modules/queryparser</echo>
<subant target="default"> <ant dir="${common.dir}/../modules/queryparser" target="default" inheritall="false">
<fileset dir="${common.dir}/../modules/queryparser" includes="build.xml"/> <propertyset refid="uptodate.and.compiled.properties"/>
</subant> </ant>
<property name="queryparser.uptodate" value="true"/>
</target> </target>
</project> </project>