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:12 UTC

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

remm        01/10/03 22:51:12

  Modified:    jasper   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.26      +3 -3      jakarta-tomcat-4.0/jasper/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/build.xml,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- build.xml	2001/10/03 21:39:12	1.25
  +++ build.xml	2001/10/04 05:51:12	1.26
  @@ -11,9 +11,9 @@
   
     <!-- Build Defaults -->
     <property name="build.compiler"    value="classic"/>
  -  <property name="jasper.build"      value="build"/>
  -  <property name="jasper.deploy"     value="../build"/>
  -  <property name="jasper.dist"       value="dist"/>
  +  <property name="jasper.build"      value="${basedir}/build"/>
  +  <property name="jasper.deploy"     value="${basedir}/../build"/>
  +  <property name="jasper.dist"       value="${basedir}/dist"/>
     <property name="test.failonerror"  value="true"/>
     <property name="test.runner"       value="junit.textui.TestRunner"/>
     <property name="tools.jar"         value="${java.home}/lib/tools.jar"/>