diff options
author | Wade Walker <[email protected]> | 2018-12-28 09:45:45 -0600 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-08-19 07:11:46 +0200 |
commit | 14e0740459036f57a7b06ca04b66e60a7eef33ed (patch) | |
tree | 2695ad4d4562979fe240d15b9d745525934a0660 /nbproject/ide-file-targets.xml | |
parent | df7c0ad3b98d3520f023e026b6163bcba2c7ee7e (diff) |
Removed obsolete tools.jar
In Java 9+, the tools.jar file also no longer exists in Java
installations (it's now stored in a secret non-JAR format), so removed
it.
Diffstat (limited to 'nbproject/ide-file-targets.xml')
-rw-r--r-- | nbproject/ide-file-targets.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nbproject/ide-file-targets.xml b/nbproject/ide-file-targets.xml index 666cf0106..0c83b8b74 100644 --- a/nbproject/ide-file-targets.xml +++ b/nbproject/ide-file-targets.xml @@ -5,7 +5,7 @@ <property name="libpath" value="${basedir}/build/lib"/> <target name="init"> <path id="cp"> - <pathelement path="${jdk.home}/lib/tools.jar:${ant.core.lib}:${ant.home}/lib/ant-junit.jar"/> + <pathelement path="${ant.core.lib}:${ant.home}/lib/ant-junit.jar"/> <pathelement location="../gluegen/make/lib/junit.jar"/> <pathelement location="../gluegen/build/gluegen-rt.jar"/> <pathelement location="build/test/build/classes"/> @@ -73,7 +73,7 @@ <fail unless="files">Must set property 'files'</fail> <mkdir dir="build/classes"/> <javac destdir="build/classes" includes="${files}" source="1.5" srcdir="src/java"> - <classpath path="build/classes:${jdk.home}/lib/tools.jar:${ant.core.lib}:lib/antlr-3.2.jar"/> + <classpath path="build/classes:${ant.core.lib}:lib/antlr-3.2.jar"/> </javac> </target> </project> |