aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-02-26 20:32:04 +0100
committerSven Gothel <[email protected]>2011-02-26 20:32:04 +0100
commit2557207469fe581cbc9d51861953cdc88f1e9715 (patch)
tree2123a18fff7aca243febe82f01fd4d7a7cbcd256
parentf8f5fcb7571ff8d7bd876aa8650e7017b653d8cb (diff)
Fix jogamp-env.xml's NODE_NAME -> build.node.namev2.0-rc2
-rwxr-xr-xmake/jogamp-env.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/make/jogamp-env.xml b/make/jogamp-env.xml
index 579714f..5655209 100755
--- a/make/jogamp-env.xml
+++ b/make/jogamp-env.xml
@@ -7,11 +7,12 @@
<!-- only set 'build.archiveon' if set in environment to trigger archive creation -->
<condition property="build.archiveon" value="${env.BUILD_ARCHIVE}">
<istrue value="${env.BUILD_ARCHIVE}"/>
- <!--isset property="${env.BUILD_ARCHIVE}"/-->
</condition>
<condition property="build.node.name" value="${env.NODE_NAME}" else="local">
- <length string="${env.NODE_NAME}" when="greater" length="0" />
+ <not>
+ <equals arg1="${env.NODE_NAME}" arg2="$${env.NODE_NAME}" casesensitive="true" />
+ </not>
</condition>
</target>