summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmake/gluegen-cpptasks-base.xml4
-rwxr-xr-xmake/jogamp-env.xml12
2 files changed, 14 insertions, 2 deletions
diff --git a/make/gluegen-cpptasks-base.xml b/make/gluegen-cpptasks-base.xml
index 0f44566..adf8ab6 100755
--- a/make/gluegen-cpptasks-base.xml
+++ b/make/gluegen-cpptasks-base.xml
@@ -1441,8 +1441,8 @@
-->
<target name="gluegen.cpptasks.declare.compiler.environment" >
<condition property="java.lib.dir.platform"
- value="${env.TARGET_JAVA_LIBS}" >
- <available file="${env.TARGET_JAVA_LIBS}" type="dir" />
+ value="${TARGET_JAVA_LIBS}" >
+ <available file="${TARGET_JAVA_LIBS}" type="dir" />
</condition>
</target>
diff --git a/make/jogamp-env.xml b/make/jogamp-env.xml
index 95d277e..9e22cbe 100755
--- a/make/jogamp-env.xml
+++ b/make/jogamp-env.xml
@@ -299,8 +299,20 @@
<equals arg1="${env.TARGET_PLATFORM_USRROOT}" arg2="$${env.TARGET_PLATFORM_USRROOT}" casesensitive="true" />
</not>
</condition>
+ <condition property="TARGET_PLATFORM_USRLIBS" value="${env.TARGET_PLATFORM_USRLIBS}">
+ <not>
+ <equals arg1="${env.TARGET_PLATFORM_USRLIBS}" arg2="$${env.TARGET_PLATFORM_USRLIBS}" casesensitive="true" />
+ </not>
+ </condition>
+ <condition property="TARGET_JAVA_LIBS" value="${env.TARGET_JAVA_LIBS}">
+ <not>
+ <equals arg1="${env.TARGET_JAVA_LIBS}" arg2="$${env.TARGET_JAVA_LIBS}" casesensitive="true" />
+ </not>
+ </condition>
<echo message='TARGET_PLATFORM_SYSROOT ${TARGET_PLATFORM_SYSROOT}'/>
<echo message='TARGET_PLATFORM_USRROOT ${TARGET_PLATFORM_USRROOT}'/>
+ <echo message='TARGET_PLATFORM_USRLIBS ${TARGET_PLATFORM_USRLIBS}'/>
+ <echo message='TARGET_JAVA_LIBS ${TARGET_JAVA_LIBS}'/>
</target>
</project>