sboag       01/06/17 12:08:35

  Modified:    java     build.xml
  Log:
  For compat.jar, put the new-built xalan.jar in front of the classpath.  If
  you don't do that, compat.jar may not build due to conflicts with older
  xalan jars that may be on the classpath.
  
  Revision  Changes    Path
  1.110     +2 -2      xml-xalan/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.xml,v
  retrieving revision 1.109
  retrieving revision 1.110
  diff -u -r1.109 -r1.110
  --- build.xml 2001/06/15 16:49:24     1.109
  +++ build.xml 2001/06/17 19:08:35     1.110
  @@ -50,7 +50,7 @@
     
     - Much of this file stolen from Stefano's xml-xerces build.xml  
     
  -   $Id: build.xml,v 1.109 2001/06/15 16:49:24 dleslie Exp $
  +   $Id: build.xml,v 1.110 2001/06/17 19:08:35 sboag Exp $
      
   ==================================================================== -->
   
  @@ -332,7 +332,7 @@
       description="Compile and jar Xalan-J 1.x backwards compat classes" >
       <echo message="Compile and jar just the Xalan-J 1 compability API"/>
       <mkdir dir="${build.compat.classes}"/>
  -    <javac srcdir="${compat.src.dir}" 
classpath="${java.class.path}:${build.xalan.jar}" 
  +    <javac srcdir="${compat.src.dir}" 
classpath="${build.xalan.jar}:${java.class.path}" 
              destdir="${build.compat.classes}"
              includes="**/*.java"
              debug="${debug}"/>
  
  
  

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

Reply via email to