marcsaeg    00/12/27 09:20:16

  Modified:    src/doc/appdev/sample Tag: tomcat_32 build.bat
  Log:
  The CP variable is being built up in three steps, but the second step
  didn't include %CP% so the results of the first step were lost.
  
  PR: 591
  Submitted by: Terry Traub ( [EMAIL PROTECTED] )
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.3.2.3   +2 -2      jakarta-tomcat/src/doc/appdev/sample/build.bat
  
  Index: build.bat
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/doc/appdev/sample/build.bat,v
  retrieving revision 1.3.2.2
  retrieving revision 1.3.2.3
  diff -u -r1.3.2.2 -r1.3.2.3
  --- build.bat 2000/11/27 22:45:57     1.3.2.2
  +++ build.bat 2000/12/27 17:20:11     1.3.2.3
  @@ -1,12 +1,12 @@
   @echo off
   rem build.bat -- Build Script for the "Hello, World" Application
  -rem $Id: build.bat,v 1.3.2.2 2000/11/27 22:45:57 craigmcc Exp $
  +rem $Id: build.bat,v 1.3.2.3 2000/12/27 17:20:11 marcsaeg Exp $
   
   set _CP=%CP%
   
   rem Identify the custom class path components we need
   set CP=%TOMCAT_HOME%\lib\ant.jar;%TOMCAT_HOME%\lib\servlet.jar
  -set CP=%TOMCAT_HOME%\lib\jaxp.jar;%TOMCAT_HOME%\lib\parser.jar
  +set CP=%CP%;%TOMCAT_HOME%\lib\jaxp.jar;%TOMCAT_HOME%\lib\parser.jar
   set CP=%CP%;%JAVA_HOME%\lib\tools.jar
   
   rem Execute ANT to perform the requird build target
  
  
  

Reply via email to