You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by le...@locus.apache.org on 2000/11/28 00:06:12 UTC

cvs commit: xml-xerces/java build.bat

lehors      00/11/27 15:06:09

  Modified:    java     build.bat
  Log:
  avoid using ANT_HOME which can be used with a different value
  than what we need. - patch from Lynn Monson
  
  Revision  Changes    Path
  1.4       +1 -2      xml-xerces/java/build.bat
  
  Index: build.bat
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/build.bat,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.bat	2000/07/05 21:40:30	1.3
  +++ build.bat	2000/11/27 23:06:06	1.4
  @@ -5,11 +5,10 @@
   if "%JAVA_HOME%" == "" goto error
   
   set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;.\tools\ant.jar;.\tools\xerces.jar;.\tools\xalan.jar;.\tools\stylebook-1.0-b2.jar;.\tools\style-apachexml.jar;
  -set ANT_HOME=./tools
   
   echo Building with classpath %LOCALCLASSPATH%
   echo Starting Ant...
  -%JAVA_HOME%\bin\java.exe -Dant.home="%ANT_HOME%" -classpath "%LOCALCLASSPATH%" org.apache.tools.ant.Main %1 %2 %3 %4 %5
  +%JAVA_HOME%\bin\java.exe -Dant.home="./tools" -classpath "%LOCALCLASSPATH%" org.apache.tools.ant.Main %1 %2 %3 %4 %5
   goto end
   
   :error