blob: 1d840e51502ea6f7eb87025c0ab67e0499bd4ff0 (
plain) (
blame)
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
26
27
28
29
30
|
$FreeBSD$
--- build.xml.orig Thu Jun 23 00:29:13 2005
+++ build.xml Tue Jul 5 23:08:11 2005
@@ -57,12 +57,13 @@
</path>
<path id="project.build.classpath">
- <fileset dir="${buildDir}/${fullProdName}/lib-nodist">
+ <fileset dir="${buildDir}/${fullProdName}/lib">
<include name="**/*.jar"/>
</fileset>
- <fileset dir="${buildDir}/${fullProdName}/lib">
- <include name="**/*.jar"/>
+ <fileset dir="${javalibdir}">
+ <include name="junit.jar"/>
+ <include name="log4j.jar"/>
</fileset>
<pathelement location="${buildDir}/${fullProdName}" />
@@ -253,7 +254,7 @@
includes="**/*.class,**/*.properties*,COPYING,README"
excludes="testsuite/**"
index="true"
- manifest="${buildDir}/MANIFEST.MF"/>
+ manifest="${buildDir}/META-INF/MANIFEST.MF"/>
</target>
<target name="dist-trace" depends="init, compile-driver-trace">
|