You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by ru...@locus.apache.org on 2000/07/02 01:33:55 UTC

cvs commit: jakarta-ant build.bat build.sh

rubys       00/07/01 16:33:55

  Modified:    .        build.bat build.sh
  Log:
  Better support for JDK 1.1
  Submitted by: Drew Sudell <as...@op.net>
  
  Revision  Changes    Path
  1.8       +1 -0      jakarta-ant/build.bat
  
  Index: build.bat
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/build.bat,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.bat	2000/06/30 22:39:45	1.7
  +++ build.bat	2000/07/01 23:33:54	1.8
  @@ -6,6 +6,7 @@
   set LOCALCLASSPATH=%CLASSPATH%
   for %%i in (%ANT_HOME%\lib\*.jar) do call lcp.bat %%i
   if exist %JAVA_HOME%\lib\tools.jar call lcp.bat %JAVA_HOME%\lib\tools.jar
  +if exist %JAVA_HOME%\lib\classes.zip call lcp.bat %JAVA_HOME%\lib\classes.zip
   
   echo.
   echo Building with classpath: %LOCALCLASSPATH%
  
  
  
  1.9       +4 -0      jakarta-ant/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/build.sh,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- build.sh	2000/06/30 22:39:45	1.8
  +++ build.sh	2000/07/01 23:33:54	1.9
  @@ -15,6 +15,10 @@
     LOCALCLASSPATH=$LOCALCLASSPATH:$JAVA_HOME/lib/tools.jar
   fi
   
  +if test -f $JAVA_HOME/lib/classes.zip ; then
  +  LOCALCLASSPATH=$LOCALCLASSPATH:$JAVA_HOME/lib/classes.zip
  +fi
  +
   echo
   echo Building with classpath: $LOCALCLASSPATH
   echo