-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Further tuning of the build scripts. The bootstrap now goes into
the bootstrap directory to minimise interference with the CVS lib directory. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268545 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Conor MacNeill
committed
Jan 31, 2001
1 parent
87ef70f
commit 890a016
Showing
7 changed files
with
59 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
.ant.properties | ||
dist | ||
build | ||
bootstrap | ||
distribution | ||
prj.el | ||
emacs-jprj.el | ||
bootstrap.bat.pif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
@echo off | ||
|
||
set OLDCLASSPATH=%CLASSPATH% | ||
set REAL_ANT_HOME=%ANT_HOME% | ||
set ANT_HOME=. | ||
if exist lib\ant.jar if exist bin\ant.bat if exist bin\lcp.bat if exist bin\antRun.bat goto runAnt | ||
set ANT_HOME=bootstrap | ||
if exist bootstrap\lib\ant.jar if exist bootstrap\bin\ant.bat if exist bootstrap\bin\lcp.bat if exist bootstrap\bin\antRun.bat goto runAnt | ||
call bootstrap.bat | ||
|
||
:runAnt | ||
set CLASSPATH=%CLASSPATH%;lib\parser.jar;lib\jaxp.jar | ||
if not "%REAL_ANT_HOME%" == "" goto install_ant | ||
call .\bin\ant.bat %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
call bootstrap\bin\ant.bat %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
goto cleanup | ||
|
||
:install_ant | ||
call .\bin\ant.bat -Dant.install="%REAL_ANT_HOME%" %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
call bootstrap\bin\ant.bat -Dant.install="%REAL_ANT_HOME%" %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
|
||
rem clean up | ||
:cleanup | ||
set ANT_HOME=%REAL_ANT_HOME% | ||
set REAL_ANT_HOME= | ||
set CLASSPATH=%OLDCLASSPATH% | ||
set OLDCLASSPATH= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters