diff options
author | Sven Gothel <[email protected]> | 2013-03-28 23:49:46 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-03-28 23:49:46 +0100 |
commit | ad4d7fb1e792d4a406fc828d852e624cfd144609 (patch) | |
tree | 844cdbccd955617fd5d78866a0f0d6f0d619a4de | |
parent | e4c51369141808d61902511c738c5243c9badc62 (diff) |
joal.build.id -> target init, depends on jogamp.env.init
-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 8a7dc6b..0d3c4c3 100755 --- a/make/build.xml +++ b/make/build.xml @@ -45,7 +45,6 @@ <!-- This is the version of JOAL you are building --> <property name="joal.build.number" value="manual-build"/> - <property name="joal.build.id" value="${version.timestamp}"/> <mkdir dir="${build}" /> <exec dir="." executable="git" logError="true" failonerror="false" failifexecutionfails="false" output="${build}/localbranch.raw"> @@ -87,6 +86,7 @@ --> <target name="init" depends="jogamp.env.init, gluegen.cpptasks.detect.os"> + <property name="joal.build.id" value="${version.timestamp}"/> <property name="joal.version" value="${jogamp.version.base}-${version.timestamp}" /> <!-- The location and name of the configuration ANT file that will @@ -736,7 +736,7 @@ <antcall target="jar" inheritRefs="true" /> </target> - <target name="tag.build"> + <target name="tag.build" depends="init"> <copy file="${gluegen.build}/artifact.properties" todir="${build}" overwrite="true" failonerror="false"/> <echo message='joal.build.number=${joal.build.number}${line.separator}' file="${build}/artifact.properties" append="true"/> <echo message='joal.build.id=${joal.build.id}${line.separator}' file="${build}/artifact.properties" append="true"/> |