Browse Source

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
pull/37/head
Andreas L. Delmelle 16 years ago
parent
commit
df545022ac
1 changed files with 7 additions and 4 deletions
  1. 7
    4
      build.xml

+ 7
- 4
build.xml View File

@@ -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>

<!-- =================================================================== -->

Loading…
Cancel
Save