File: classpath.patch

package info (click to toggle)
eigenbase-resgen 1.3.0.13768-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,004 kB
  • sloc: java: 7,956; xml: 729; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 804 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Description: specifying the classpath in the build.xml file for the Debian
 build
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2025-01-22

--- a/build.xml
+++ b/build.xml
@@ -35,13 +35,13 @@
 
   <path id="project.classpath">
     <pathelement location="${classes.dir}"/>
-    <pathelement location="${lib.dir}/junit.jar"/>
+    <pathelement location="/usr/share/java/junit.jar"/>
   </path>
 
   <path id="project.boot.classpath">
     <path refid="project.classpath"/>
-    <pathelement location="${resgen.jar.file}"/>
-    <pathelement location="${xom.jar.file}"/>
+    <pathelement location="/usr/share/java/eigenbase-xom.jar"/>
+    <pathelement location="/usr/share/java/xercesImpl.jar"/>
   </path>
 
   <taskdef name="xomgen" classname="org.eigenbase.xom.XOMGenTask">