blob: 3dbe5b18eebbbbe452d6aad87fdb84fb3fbdb1e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
$NetBSD: patch-build.xml,v 1.1.1.1 2012/08/08 20:24:44 asau Exp $
--- build.xml.orig 2012-01-09 09:55:11.000000000 +0000
+++ build.xml
@@ -43,6 +43,9 @@ For help on the automatic tests availabl
<property name="abcl.ext.dir"
value="${basedir}/ext"/>
+ <property name="abcl.runtime.jar.path"
+ value="${abcl.jar.path}"/>
+
<fail message="Please build using Ant 1.7.1 or higher.">
<condition>
<not>
@@ -451,7 +454,7 @@ from ${abcl.home.dir}
<!-- Set from commandline or in 'build.properties' -->
<property name="additional.jars" value=""/>
<path id="abcl.runtime.classpath">
- <pathelement location="${abcl.jar.path}"/>
+ <pathelement location="${abcl.runtime.jar.path}"/>
<pathelement path="${additional.jars}"/>
</path>
<!-- set via '-Djava.options=JAVA_OPTIONS' or in 'build.properties -->
|