diff options
author | Sven Gothel <[email protected]> | 2010-07-26 18:18:08 -0700 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-07-26 18:18:08 -0700 |
commit | d6b4ffc56c2e8b2999dd03a64ffaa0730ffd84b0 (patch) | |
tree | 0e877f8d7ee7722c4ad5a88642647362be7c0267 /make/build.xml | |
parent | c5da1b0d99b623ba14464be70a79ce1ffaccf6cc (diff) |
Fix: gluegen.build.number default/file value order
Diffstat (limited to 'make/build.xml')
-rwxr-xr-x | make/build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/build.xml b/make/build.xml index 6d73713..70306b4 100755 --- a/make/build.xml +++ b/make/build.xml @@ -49,12 +49,12 @@ <property name="javadoc" location="${build}/javadoc" /> <property name="gluegen.lib.dir" value="${build}/obj"/> + <property file="${build}/artifact.properties"/> <condition property="gluegen.build.number" value="manual-build"> <not> <isset property="gluegen.build.number"/> </not> </condition> - <property file="${build}/artifact.properties"/> <!-- The generated source directories. --> <property name="src.generated" value="${build}/gensrc" /> @@ -696,7 +696,7 @@ </junit> </target> - <target name="tag.build"> + <target name="tag.build" depends="init"> <echo message='gluegen.build.number=${gluegen.build.number}${line.separator}' file="${build}/artifact.properties"/> </target> |