You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2001/10/04 07:51:38 UTC

cvs commit: jakarta-tomcat-4.0/webapps build.xml

remm        01/10/03 22:51:38

  Modified:    webapps  build.xml
  Log:
  - Fix some problems with handling of the base directory path. The output
    directory could apparently be wrong when invoking Ant in one of the
    subprojects (although I never experienced the problem).
    Patch submitted by Patrick Luby (Patrick.Luby at sun.com).
  
  Revision  Changes    Path
  1.18      +3 -3      jakarta-tomcat-4.0/webapps/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/build.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- build.xml	2001/09/16 04:58:28	1.17
  +++ build.xml	2001/10/04 05:51:38	1.18
  @@ -10,9 +10,9 @@
     <property file="${user.home}/build.properties"/>
   
     <property name="build.compiler"  value="classic"/>
  -  <property name="webapps.build"   value="build"/>
  -  <property name="webapps.deploy"  value="../build"/>
  -  <property name="webapps.dist"    value="dist"/>
  +  <property name="webapps.build"   value="${basedir}/build"/>
  +  <property name="webapps.deploy"  value="${basedir}/../build"/>
  +  <property name="webapps.dist"    value="${basedir}/dist"/>
   
   
     <!-- =================== BUILD: Create Directories ====================== -->