aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2008-06-09 16:20:08 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2008-06-09 16:20:08 +0000
commit7c6c74877978b7e10669fb52af10420552f7d87d (patch)
tree095500c8e3c6d721667fb5856c7d29339db7d71d
parent64e7cf871471538b8591d6647575d107dd98b3ec (diff)
downloadxmlgraphics-fop-7c6c74877978b7e10669fb52af10420552f7d87d.tar.gz
xmlgraphics-fop-7c6c74877978b7e10669fb52af10420552f7d87d.zip
Minor update: make the codegen-unicode target create LineBreakUtils.java at the appropriate place in the source tree
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@665740 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--build.xml11
1 files changed, 7 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index d744c16c1..54356e0ab 100644
--- a/build.xml
+++ b/build.xml
@@ -1418,9 +1418,10 @@ NOTE:
<!-- =================================================================== -->
<!-- Helper task to generate source files that have already been -->
- <!-- checked into CVS. For these files, CVS version is the official one -->
- <!-- and may have updates that will *not* be generated by below. This -->
- <!-- target should never be part of the normal build process. -->
+ <!-- checked into the repository. For these files, the version in the -->
+ <!-- in the repository is the official one and may have updates that will-->
+ <!-- *not* be generated by below. -->
+ <!-- This target should never be part of the normal build process. -->
<!-- =================================================================== -->
<target name="codegen-unicode" >
<mkdir dir="${build.codegen-classes.dir}"/>
@@ -1429,7 +1430,9 @@ NOTE:
source="${javac.source}" target="${javac.target}">
<src path="${src.codegen.dir}/unicode/java"/>
</javac>
- <java classname="org.apache.fop.text.linebreak.GenerateLineBreakUtils" classpath="${build.codegen-classes.dir}" />
+ <java classname="org.apache.fop.text.linebreak.GenerateLineBreakUtils" classpath="${build.codegen-classes.dir}">
+ <arg line="-o ${src.dir}/java/org/apache/fop/text/linebreak/LineBreakUtils.java" />
+ </java>
</target>
<!-- =================================================================== -->