You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ru...@locus.apache.org on 2000/02/28 13:31:50 UTC

cvs commit: jakarta-tomcat build.xml

rubys       00/02/28 04:31:50

  Modified:    .        build.xml
  Log:
  Remove dependency on special "init" target
  
  Revision  Changes    Path
  1.36      +9 -6      jakarta-tomcat/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/build.xml,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- build.xml	2000/02/24 23:01:23	1.35
  +++ build.xml	2000/02/28 12:31:50	1.36
  @@ -1,13 +1,16 @@
   <project name="Tomcat" default="main" basedir=".">
  -  <property name="ant.home" value="../jakarta-ant"/>
  -  <property name="build.compiler" value="classic"/>
  -  <property name="tomcat.build" value="../build/tomcat"/>
  -  <property name="tomcat.home" value="../dist/tomcat"/>
   
  +  <target name="init">
  +    <property name="ant.home" value="../jakarta-ant"/>
  +    <property name="build.compiler" value="classic"/>
  +    <property name="tomcat.build" value="../build/tomcat"/>
  +    <property name="tomcat.home" value="../dist/tomcat"/>
  +  </target>
  +
     <!-- ==================== Copy static files ==================== -->
     <!-- IF YOU CHANGE, sync dist.prepare !!! -->
   
  -  <target name="prepare">
  +  <target name="prepare" depends="init">
       <mkdir dir="src/doc"/> <!-- Temp change until dir is not empty -->
       <mkdir dir="${tomcat.build}"/>
       <mkdir dir="${tomcat.build}/classes"/>
  @@ -158,7 +161,7 @@
     
   
     <!-- ==================== Admin ==================== -->
  -  <target name="clean">
  +  <target name="clean" depends="init">
       <deltree dir="${tomcat.build}"/>
       <deltree dir="${tomcat.home}"/>
     </target>