You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cr...@locus.apache.org on 2000/07/10 17:58:16 UTC

cvs commit: jakarta-servletapi build.bat

craigmcc    00/07/10 08:58:16

  Modified:    .        build.bat
  Log:
  Add a missing '%' in the classpath setting, and regularize the direction of
  the slashes.  In addition, put the "ant.jar" and "tools.jar" files at the
  beginning of the generated classpath, rather than the end, to avoid prolems
  with existing Ant classes being present.
  
  Thanks to John Morrison <jo...@experian.com> for the bug report.
  
  Revision  Changes    Path
  1.3       +2 -2      jakarta-servletapi/build.bat
  
  Index: build.bat
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi/build.bat,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.bat	2000/04/26 22:09:46	1.2
  +++ build.bat	2000/07/10 15:58:16	1.3
  @@ -8,12 +8,12 @@
   
   rem else
   set _CLASSPATH=%CLASSPATH%
  -set CLASSPATH=%CLASSPATH%;%ANT_HOME%\lib\ant.jar;%JAVA_HOME%/lib/tools.jar
  +set CLASSPATH=%ANT_HOME%\lib\ant.jar;%JAVA_HOME%\lib\tools.jar;%CLASSPATH%
   goto next
   
   :noclasspath
   set _CLASSPATH=
  -set CLASSPATH=%ANT_HOME%\lib\ant.jar;%JAVA_HOME/lib/tools.jar
  +set CLASSPATH=%ANT_HOME%\lib\ant.jar;%JAVA_HOME%\lib\tools.jar
   goto next
   
   :next