You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by la...@apache.org on 2001/03/05 22:25:44 UTC

cvs commit: jakarta-tomcat/src/build/nightly README functions_build.sh

larryi      01/03/05 13:25:44

  Modified:    src/build/nightly README functions_build.sh
  Log:
  build.xml copies jaxp.jar and parser.jar to the "lib/container" directory.
  I don't think we need these copies in the "lib" directory anymore.  The
  watchdog-servlet.xml script was updated to look in "lib/container".
  
  Revision  Changes    Path
  1.3       +1 -1      jakarta-tomcat/src/build/nightly/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/build/nightly/README,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- README	2001/02/03 16:08:25	1.2
  +++ README	2001/03/05 21:25:41	1.3
  @@ -59,7 +59,7 @@
   Build Functions
   ===============
   
  -build_tomcat SUFIX TARGET -> build, add jaxp1.0 and zip the result
  +build_tomcat SUFIX TARGET -> build and zip the result
   ant_build REPOSITORY DISTNAME LOGFILE TARGET -> use ant to build 
             repository ( jakarta-tomcat ) into DISTNAME ( tomcat ), 
   	  with log ( build-full.log ) and using TARGET ( main )
  
  
  
  1.3       +1 -2      jakarta-tomcat/src/build/nightly/functions_build.sh
  
  Index: functions_build.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/build/nightly/functions_build.sh,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- functions_build.sh	2001/02/03 16:08:25	1.2
  +++ functions_build.sh	2001/03/05 21:25:42	1.3
  @@ -179,13 +179,12 @@
     cp $ANT_HOME/lib/jaxp.jar $WS/dist/tomcat/lib
   }
   
  -## Will build tomcat, copy the jaxp files, and zip the result
  +## Will build tomcat and zip the result
   build_tomcat() {
     SUFIX=$1
     TARGET=$2
     
     ant_build jakarta-tomcat tomcat tomcat-build-$SUFIX.log $TARGET
  -  fix_tomcat
     zip_dist tomcat tomcat-$SUFIX 
   }