antoine 2005/04/18 22:10:46
Modified: . WHATSNEW
src/script ant.bat
Log:
ant.bat was missing runAntNoClasspath label for goto
PR: 34510
Revision Changes Path
1.807 +3 -0 ant/WHATSNEW
Index: WHATSNEW
===================================================================
RCS file: /home/cvs/ant/WHATSNEW,v
retrieving revision 1.806
retrieving revision 1.807
diff -u -r1.806 -r1.807
--- WHATSNEW 18 Apr 2005 20:09:08 -0000 1.806
+++ WHATSNEW 19 Apr 2005 05:10:46 -0000 1.807
@@ -371,6 +371,9 @@
* Jar task was not including manifest files when duplicate="preserve" was
chosen. Bugzilla 32802.
+* ant.bat was missing runAntNoClasspath label for goto.
+ Bugzilla 34510
+
* Classpath was treated in the same way as -lib options. Bugzilla 28046.
* Manual page for cvsversion contained incorrect attributes and did not
1.40 +5 -1 ant/src/script/ant.bat
Index: ant.bat
===================================================================
RCS file: /home/cvs/ant/src/script/ant.bat,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ant.bat 5 Oct 2004 08:37:00 -0000 1.39
+++ ant.bat 19 Apr 2005 05:10:46 -0000 1.40
@@ -1,6 +1,6 @@
@echo off
-REM Copyright 2001,2004 The Apache Software Foundation
+REM Copyright 2001,2004-2005 The Apache Software Foundation
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
@@ -94,6 +94,10 @@
"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar"
"-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS%
%ANT_CMD_LINE_ARGS%
goto end
+:runAntNoClasspath
+"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar"
"-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS%
%ANT_CMD_LINE_ARGS%
+goto end
+
:runAntWithClasspath
"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar"
"-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp
"%CLASSPATH%" %ANT_CMD_LINE_ARGS%
goto end
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]