diff options
author | Jeremias Maerki <jeremias@apache.org> | 2004-01-23 15:07:29 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2004-01-23 15:07:29 +0000 |
commit | 708c3201c1f9af91f758d8a098426f75f31f22d2 (patch) | |
tree | 095ca3c911b10749eb1200fc03b832ae0cc5a16d /build.xml | |
parent | e128882271c6609cf51a6a349b8bb44eab58d210 (diff) | |
download | xmlgraphics-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.xml | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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/**"> |