ports/databases/mysql-connector-java/files/patch-build.xml
Herve Quiroz 2f524a5c53 - Update to 3.1.10 [1]
- Don't try to mkdir ${JAVAJARDIR} as it has been part of mtree for more than 3
  years now

PR:		83059 [1]
Submitted by:	maintainer [1]
2005-07-06 16:10:23 +00:00

30 lines
872 B
XML

$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">