aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorSimon Pepping <spepping@apache.org>2005-10-01 09:07:10 +0000
committerSimon Pepping <spepping@apache.org>2005-10-01 09:07:10 +0000
commita9c3a5c72205a8b2b90affec0bd707800392aad5 (patch)
treee468dbd3f7f6ddb55f9ebd64ce1898280f1a3fd1 /build.xml
parent0d958797f24f630650d5fdd45eabfa8fd69933a7 (diff)
downloadxmlgraphics-fop-a9c3a5c72205a8b2b90affec0bd707800392aad5.tar.gz
xmlgraphics-fop-a9c3a5c72205a8b2b90affec0bd707800392aad5.zip
Build the hyphenation patterns under the build/classes directory.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@292942 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index c131f5b6c..a58169efe 100644
--- a/build.xml
+++ b/build.xml
@@ -389,8 +389,8 @@ list of possible build targets.
<pathelement location="${build.classes.dir}"/>
</path>
<taskdef name="serHyph" classname="org.apache.fop.tools.anttasks.SerializeHyphPattern" classpathref="hyph-classpath"/>
- <mkdir dir="${build.dir}/hyph"/>
- <serHyph targetDir="${build.dir}/hyph">
+ <mkdir dir="${build.classes.dir}/hyph"/>
+ <serHyph targetDir="${build.classes.dir}/hyph">
<fileset dir="${user.hyph.dir}">
<include name="*.xml"/>
</fileset>
@@ -399,7 +399,7 @@ list of possible build targets.
<target name="uptodate-jar-hyphenation" depends="compile-hyphenation">
<uptodate property="jar.hyphenation.uptodate" targetfile="${build.dir}/fop-hyph.jar">
- <srcfiles dir="${build.dir}/hyph"/>
+ <srcfiles dir="${build.classes.dir}/hyph"/>
</uptodate>
</target>
@@ -407,7 +407,7 @@ list of possible build targets.
<tstamp>
<format property="ts" pattern="yyyyMMdd-HHmmss-z"/>
</tstamp>
- <jar jarfile="${build.dir}/fop-hyph.jar" basedir="${build.dir}" includes="hyph/*.hyp">
+ <jar jarfile="${build.dir}/fop-hyph.jar" basedir="${build.classes.dir}" includes="hyph/*.hyp">
<manifest>
<attribute name="Implementation-Title" value="${Name}"/>
<attribute name="Implementation-Version" value="${version}"/>