You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by an...@apache.org on 2003/12/22 07:31:12 UTC

cvs commit: xml-forrest/tools/ant/bin ant.bat ant

antonio     2003/12/21 22:31:12

  Modified:    tools/ant/bin ant.bat ant
  Log:
  Fixing changes in Ant files
  
  Revision  Changes    Path
  1.9       +2 -2      xml-forrest/tools/ant/bin/ant.bat
  
  Index: ant.bat
  ===================================================================
  RCS file: /home/cvs//xml-forrest/tools/ant/bin/ant.bat,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ant.bat	20 Dec 2003 07:30:13 -0000	1.8
  +++ ant.bat	22 Dec 2003 06:31:12 -0000	1.9
  @@ -3,7 +3,7 @@
   REM   Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
   REM   reserved.
   
  -if exist "%HOME%\antrc_pre.bat" call "%HOME%\antrc_pre.bat"
  +if exist "%HOME%\forrestrc_pre.bat" call "%HOME%\antrc_pre.bat"
   
   if "%OS%"=="Windows_NT" @setlocal
   
  @@ -91,5 +91,5 @@
   if "%OS%"=="Windows_NT" @endlocal
   
   :mainEnd
  -if exist "%HOME%\antrc_post.bat" call "%HOME%\antrc_post.bat"
  +if exist "%HOME%\forrestrc_post.bat" call "%HOME%\antrc_post.bat"
   
  
  
  
  1.7       +3 -3      xml-forrest/tools/ant/bin/ant
  
  Index: ant
  ===================================================================
  RCS file: /home/cvs//xml-forrest/tools/ant/bin/ant,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ant	20 Dec 2003 07:24:57 -0000	1.6
  +++ ant	22 Dec 2003 06:31:12 -0000	1.7
  @@ -5,7 +5,7 @@
   
   # load system-wide ant configuration
   if [ -f "/etc/ant.conf" ] ; then
  -  . /etc/ant.conf
  +  . /etc/forrest.conf
   fi
   
   # provide default values for people who don't use RPMs
  @@ -18,8 +18,8 @@
   fi
   
   # load user ant configuration
  -if [ -f "$HOME/.antrc" ] ; then
  -  . "$HOME/.antrc"
  +if [ -f "$HOME/.forrestrc" ] ; then
  +  . "$HOME/.forrestrc"
   fi
   
   # OS specific support.  $var _must_ be set to either true or false.