[Mulgara-svn] r642 - trunk/src/jar/config
ronald at mulgara.org
ronald at mulgara.org
Mon Feb 18 10:59:32 UTC 2008
Author: ronald
Date: 2008-02-18 02:59:31 -0800 (Mon, 18 Feb 2008)
New Revision: 642
Modified:
trunk/src/jar/config/build.xml
Log:
Fix uptodate checking: the uptodate check target was never called, and hence
the uptodate variable was never being set.
Modified: trunk/src/jar/config/build.xml
===================================================================
--- trunk/src/jar/config/build.xml 2008-02-17 02:54:55 UTC (rev 641)
+++ trunk/src/jar/config/build.xml 2008-02-18 10:59:31 UTC (rev 642)
@@ -9,7 +9,7 @@
<!-- =================================================================== -->
<!-- Builds the base Mulgara configuration JAR -->
<!-- =================================================================== -->
- <target name="config-generate-uptodate">
+ <target name="-config-generate-uptodate">
<condition property="config-generate-uptodate">
<and>
@@ -21,8 +21,8 @@
</condition>
</target>
- <target name="config-generate"
- description="Generates the Mulgara config code" unless="config-generate-uptodate">
+ <target name="config-generate" description="Generates the Mulgara config code"
+ depends="-config-generate-uptodate" unless="config-generate-uptodate">
<delete dir="${obj.dir}/jar/config/java"/>
More information about the Mulgara-svn
mailing list