antoine     2003/11/10 08:48:56

  Modified:    .        build.sh build.bat
  Log:
  Make ModifiedSelectorTest pass when started through build.sh or build.bat
  PR: 24481
  Submitted by: Florian.G. Haas (f dot g dot haas at gmx dot net)
  
  Revision  Changes    Path
  1.37      +5 -1      ant/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/ant/build.sh,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- build.sh  24 Sep 2003 14:52:47 -0000      1.36
  +++ build.sh  10 Nov 2003 16:48:56 -0000      1.37
  @@ -16,7 +16,11 @@
   esac
   
   REALANTHOME=$ANT_HOME
  -ANT_HOME=bootstrap
  +if [ -z $PWD ]; then
  +    ANT_HOME=./bootstrap
  +else
  +    ANT_HOME=$PWD/bootstrap
  +fi
   export ANT_HOME
   
   if test ! -f bootstrap/lib/ant.jar -o  ! -x bootstrap/bin/ant -o ! -x 
bootstrap/bin/antRun ; then
  
  
  
  1.41      +1 -1      ant/build.bat
  
  Index: build.bat
  ===================================================================
  RCS file: /home/cvs/ant/build.bat,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- build.bat 25 Sep 2003 07:44:13 -0000      1.40
  +++ build.bat 10 Nov 2003 16:48:56 -0000      1.41
  @@ -4,7 +4,7 @@
   REM   reserved.
   
   set REAL_ANT_HOME=%ANT_HOME%
  -set ANT_HOME=bootstrap
  +set ANT_HOME=%~dp0\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
   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
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to