costin      01/05/20 23:24:23

  Modified:    .        build.xml
  Log:
  Read ant.properties, each user has a different setup.
  
  ( that used to be there, I don't know when it got lost - but it's very
  difficult to work without something like this )
  
  Revision  Changes    Path
  1.130     +3 -1      jakarta-tomcat/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/build.xml,v
  retrieving revision 1.129
  retrieving revision 1.130
  diff -u -r1.129 -r1.130
  --- build.xml 2001/05/15 13:03:03     1.129
  +++ build.xml 2001/05/21 06:24:23     1.130
  @@ -2,6 +2,7 @@
   <project name="Tomcat" default="main" basedir=".">
   
     <!-- Compilation properties -->
  +  <property file="${user.home}/.ant.properties"  />
   
     <property name="optimize" value="false"/>
     <property name="debug" value="on"/>
  @@ -626,7 +627,8 @@
      
     <!-- The self-test app should be removed in the release, but it's 
          useful to have it builded by default -->
  -  <target name="tomcat" depends="prepare,tomcat-jars-new">
  +  <target name="tomcat" depends="prepare,tomcat-jars-new"
  +          description="Build tomcat core only" >
     </target>
   
     <target name="clean-classes" depends="init">
  
  
  

Reply via email to