Simon, I thought the whole hyphenation build was suppose to be removed from the trunk?
Manuel On Sat, 1 Oct 2005 05:07 pm, [EMAIL PROTECTED] wrote: > Author: spepping > Date: Sat Oct 1 02:07:10 2005 > New Revision: 292942 > > URL: http://svn.apache.org/viewcvs?rev=292942&view=rev > Log: > Build the hyphenation patterns under the build/classes directory. > > Modified: > xmlgraphics/fop/trunk/build.xml > > Modified: xmlgraphics/fop/trunk/build.xml > URL: > http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/build.xml?rev=292 >942&r1=292941&r2=292942&view=diff > ===================================================================== >========= --- xmlgraphics/fop/trunk/build.xml (original) > +++ xmlgraphics/fop/trunk/build.xml Sat Oct 1 02:07:10 2005 > @@ -389,8 +389,8 @@ > <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 @@ > > <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 @@ > <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}"/> > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: > [EMAIL PROTECTED] For additional > commands, e-mail: [EMAIL PROTECTED]
