tmiller     02/01/09 08:04:30

  Modified:    java     build.xml
  Log:
  chged fork attribute to 'yes' in the xsltc subtargets
  
  Revision  Changes    Path
  1.148     +7 -5      xml-xalan/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.xml,v
  retrieving revision 1.147
  retrieving revision 1.148
  diff -u -r1.147 -r1.148
  --- build.xml 28 Nov 2001 19:46:24 -0000      1.147
  +++ build.xml 9 Jan 2002 16:04:30 -0000       1.148
  @@ -41,7 +41,7 @@
   
   Copyright:
     Copyright (c) 1999-2001 The Apache Software Foundation.
  -   $Id: build.xml,v 1.147 2001/11/28 19:46:24 curcuru Exp $
  +   $Id: build.xml,v 1.148 2002/01/09 16:04:30 tmiller Exp $
   ==================================================================== -->
   
   <project name="Xalan" default="jar" basedir=".">
  @@ -188,7 +188,7 @@
     <!-- Creates output build directories and doc prerequistes               
-->
     <!-- =================================================================== 
-->
     <target name="prepare">
  -    <echo message="Project:${Name-in-docs} version:${version} build.xml 
$Revision: 1.147 $"/>
  +    <echo message="Project:${Name-in-docs} version:${version} build.xml 
$Revision: 1.148 $"/>
       <mkdir dir="${build.dir}"/>
       <mkdir dir="${build.classes}"/>
       <!-- Note that all testing-related targets *must* depend on 
  @@ -344,10 +344,12 @@
     <target name="xsltc.java_cup" depends="xsltc.prepare" > <!-- 
if="xsltc.java_cup.needed" -->
       <!-- The second step generates sym.java and XPathParser.java. -->
       <echo message="java_cup preparsing"/>
  -    <java fork="no" failonerror="true" 
classname="org.apache.xalan.xsltc.util.JavaCupRedirect" >
  +    <java fork="yes" failonerror="true" 
  +       classname="org.apache.xalan.xsltc.util.JavaCupRedirect" >
         <classpath refid="xsltc.class.path" />
         <!-- We're using JavaCupRedirect to call the java_cup application -->
  -      <arg line="-parser XPathParser -expect 0 -stdin 
${src.dir}/${xsltc.reldir}/compiler/xpath.cup"/>
  +      <arg line="-parser XPathParser -expect 0 
  +         -stdin ${src.dir}/${xsltc.reldir}/compiler/xpath.cup"/>
       </java>
       <echo message="java_cup move output files"/>
       <move file="XPathParser.java" tofile="${generated.xpathparser}"/>
  @@ -358,7 +360,7 @@
       <!-- The third step generates XPathLexer.java. The lexiographical 
analyser
       has to be generated after sym.java, so order is important. -->
       <echo message="JLex preparsing"/>
  -    <java fork="no" failonerror="true" classname="JLex.Main" >
  +    <java fork="yes" failonerror="true" classname="JLex.Main" >
         <classpath refid="xsltc.class.path" />
         <arg line="-static ${src.dir}/${xsltc.reldir}/compiler/xpath.lex"/>
       </java>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to