diff options
author | Simon Pepping <spepping@apache.org> | 2005-03-29 19:06:08 +0000 |
---|---|---|
committer | Simon Pepping <spepping@apache.org> | 2005-03-29 19:06:08 +0000 |
commit | a249eac61bf27e186cb25de99188f0f9530f038d (patch) | |
tree | 757a33ab67dcfc94160a2f92af3a892a8ce091be /build.xml | |
parent | ba0c0925e1f84a964ec3321f5886a995212105c5 (diff) | |
download | xmlgraphics-fop-a249eac61bf27e186cb25de99188f0f9530f038d.tar.gz xmlgraphics-fop-a249eac61bf27e186cb25de99188f0f9530f038d.zip |
Reverted to a single hyphenation target
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198552 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 14 |
1 files changed, 1 insertions, 13 deletions
@@ -462,29 +462,17 @@ list of possible build targets. <!-- =================================================================== --> <!-- compiles hyphenation patterns --> <!-- =================================================================== --> - <target name="hyphenation" depends="fop-hyphenation,user-hyphenation"/> - - <target name="prepare-hyphenation" depends="prepare"> + <target name="hyphenation" depends="prepare"> <path id="hyph-classpath"> <path refid="libs-build-classpath"/> <pathelement location="${build.dir}/classes"/> </path> <taskdef name="serHyph" classname="org.apache.fop.tools.anttasks.SerializeHyphPattern" classpathref="hyph-classpath"/> - </target> - - <target name="fop-hyphenation" depends="prepare-hyphenation"> <serHyph includes="*.xml" sourceDir="${hyph.dir}" targetDir="${build.dest}/hyph"/> </target> - <target name="user-hyphenation" depends="prepare-hyphenation" if="user.hyph.dir"> - <property name="user.hyphdest.dir" value="${build.dest}/hyph"/> - <serHyph includes="*.xml" - sourceDir="${user.hyph.dir}" - targetDir="${user.hyphdest.dir}"/> - </target> - <target name="hyphenation-jar" depends="hyphenation"> <tstamp> <format property="ts" pattern="yyyy-MM-dd'T'HH:mm:ssZ"/> |