summaryrefslogtreecommitdiffstats
path: root/test/junit/com
diff options
context:
space:
mode:
authorWade Walker <[email protected]>2018-12-28 09:45:06 -0600
committerSven Gothel <[email protected]>2019-08-16 23:59:35 +0200
commit760295dc597b3a91bf011115dd7bfad9c0c37f82 (patch)
treef8f3ae67f5d1c24daf730defa6104f76aa84c0bd /test/junit/com
parent93121714758f89a394993f0740c6929f48fb887b (diff)
Fixed java.home directory and removed obsolete tools.jar
In Java 9+, there's no longer a "jre" directory in the installation, so removed references to it. The tools.jar file also no longer exists in Java installations (it's now stored in a secret non-JAR format), so removed that as well.
Diffstat (limited to 'test/junit/com')
-rw-r--r--test/junit/com/jogamp/gluegen/build.xml3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/junit/com/jogamp/gluegen/build.xml b/test/junit/com/jogamp/gluegen/build.xml
index 95617be..3555df1 100644
--- a/test/junit/com/jogamp/gluegen/build.xml
+++ b/test/junit/com/jogamp/gluegen/build.xml
@@ -22,7 +22,6 @@
<echo message=" - - - compiling java files - - - "/>
<property name="build.dir.java" value="${build.dir}/classes"/>
- <property name="tools.jar" value="${java.home}/../lib/tools.jar"/>
<echo message="src: ${src.dir} "/>
<echo message="build: ${build.dir.java} "/>
@@ -31,7 +30,7 @@
<javac destdir="${build.dir.java}" source="1.5" failonerror="true" debug="true" debuglevel="lines,vars,source">
<src path="${src.dir}"/>
- <classpath path="${gluegen.root}/${rootrel.build}/classes:${src.dir}:${gluegen.root}/${rootrel.build}/antlr-3.2.jar:${gluegen.root}/make/lib/junit.jar:${tools.jar}:${ant.core.lib}"/>
+ <classpath path="${gluegen.root}/${rootrel.build}/classes:${src.dir}:${gluegen.root}/${rootrel.build}/antlr-3.2.jar:${gluegen.root}/make/lib/junit.jar:${ant.core.lib}"/>
</javac>
<echo message=" - - - java files compiled - - - "/>