1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: setting the classpath in build.xml for a Debian build
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2025-01-27
--- a/build.xml
+++ b/build.xml
@@ -24,9 +24,9 @@
<echo message="------ Compiling application"/>
<javac srcdir="${sources}" destdir="${classes}" includes="**" source="${jdksource}" target="${jdktarget}">
<classpath>
- <pathelement location="${oggjar}"/>
- <pathelement location="${jorbisjar}"/>
- <pathelement location="${tritonusjar}"/>
+ <pathelement location="/usr/share/java/jogg.jar"/>
+ <pathelement location="/usr/share/java/jorbis.jar"/>
+ <pathelement location="/usr/share/java/tritonus_share.jar"/>
<pathelement location="${sources}"/>
</classpath>
</javac>
|