You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by dl...@locus.apache.org on 2000/11/01 16:14:38 UTC

cvs commit: xml-xalan build.xml

dleslie     00/11/01 07:14:35

  Modified:    .        build.xml
  Log:
  fixed reference to bin directory.
  
  Revision  Changes    Path
  1.35      +3 -2      xml-xalan/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/build.xml,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- build.xml	2000/10/26 17:48:40	1.34
  +++ build.xml	2000/11/01 15:14:30	1.35
  @@ -53,7 +53,7 @@
     
     - Much of this file stolen from Stefano's xml-xerces build.xml  
     
  -   $Id: build.xml,v 1.34 2000/10/26 17:48:40 dleslie Exp $
  +   $Id: build.xml,v 1.35 2000/11/01 15:14:30 dleslie Exp $
      
   ==================================================================== -->
   
  @@ -73,6 +73,7 @@
     <property name="debug" value="off"/>
   
     <property name="src.dir" value="./src"/>
  +  <property name="bin.dir" value="./bin"/>
     <property name="samples.dir" value="./samples"/>
     <property name="version.file" value="org/apache/xalan/xslt/XSLProcessorVersion.java"/>
     <property name="packages" value="org.*"/><!-- Check that this correctly gets all needed javadoc 17-Jan-00 SCurcuru -->
  @@ -293,7 +294,7 @@
       <!-- Copy Ant-related build.xml and other READMEs, etc. -->
       <mkdir dir="${build.dist}/bin"/>
       <copy todir="${build.dist}/bin">
  -      <fileset dir="{bin.dir}" includes="ant.jar,antRun,antRun.bat"/>
  +      <fileset dir="${bin.dir}" includes="ant.jar,antRun,antRun.bat"/>
       </copy>
       
       <!-- Old Makefile etc. - deprecated. -->