aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2004-01-23 15:07:29 +0000
committerJeremias Maerki <jeremias@apache.org>2004-01-23 15:07:29 +0000
commit708c3201c1f9af91f758d8a098426f75f31f22d2 (patch)
tree095ca3c911b10749eb1200fc03b832ae0cc5a16d /build.xml
parente128882271c6609cf51a6a349b8bb44eab58d210 (diff)
downloadxmlgraphics-fop-708c3201c1f9af91f758d8a098426f75f31f22d2.tar.gz
xmlgraphics-fop-708c3201c1f9af91f758d8a098426f75f31f22d2.zip
Fixed a bug where I got a NoClassDefFoundError when I'm using a build-local.properties where I set optional.lib.dir to an absolute Windows path. These absolute paths weren't removed somehow resulting in NoClassDefFound errors due to a illegal Class-Path entry in fop.jar's manifest.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197247 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 805067992..7a2663045 100644
--- a/build.xml
+++ b/build.xml
@@ -471,6 +471,7 @@ list of possible build targets.
<pathconvert property="manifest-classpath" dirsep="/" pathsep=" " refid="libs-run-classpath">
<map from="${basedir}${file.separator}lib${file.separator}" to=""/>
<map from="${basedir}${file.separator}build${file.separator}fop.jar" to=""/>
+ <map from="${optional.lib.dir}${file.separator}" to=""/>
</pathconvert>
<jar jarfile="${build.dir}/${name}.jar" basedir="${build.dest}" includes="org/**,hyph/**">