You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by co...@apache.org on 2002/04/05 05:24:52 UTC

cvs commit: jakarta-ant bootstrap.sh

conor       02/04/04 19:24:52

  Modified:    .        bootstrap.sh
  Log:
  JDK 1.1 memory must be set. Use ANT_OPTS and introduce new variable
  for bootstrap's Javac usage
  
  Revision  Changes    Path
  1.62      +2 -2      jakarta-ant/bootstrap.sh
  
  Index: bootstrap.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/bootstrap.sh,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -w -u -r1.61 -r1.62
  --- bootstrap.sh	27 Jan 2002 19:25:29 -0000	1.61
  +++ bootstrap.sh	5 Apr 2002 03:24:52 -0000	1.62
  @@ -109,7 +109,7 @@
   
   echo ... Compiling Ant Classes
   
  -"${JAVAC}" -d ${CLASSDIR} ${TOOLS}/bzip2/*.java ${TOOLS}/tar/*.java ${TOOLS}/zip/*.java \
  +"${JAVAC}" $BOOTJAVAC_OPTS -d ${CLASSDIR} ${TOOLS}/bzip2/*.java ${TOOLS}/tar/*.java ${TOOLS}/zip/*.java \
       ${TOOLS}/ant/util/regexp/RegexpMatcher.java \
       ${TOOLS}/ant/util/regexp/RegexpMatcherFactory.java \
       ${TOOLS}/ant/util/*.java ${TOOLS}/ant/types/*.java \
  @@ -133,7 +133,7 @@
   
   echo ... Building Ant Distribution
   
  -"${JAVACMD}" -classpath "${CLASSPATH}" -Dant.home=. org.apache.tools.ant.Main -emacs "$@" bootstrap
  +"${JAVACMD}" -classpath "${CLASSPATH}" -Dant.home=. $ANT_OPTS org.apache.tools.ant.Main -emacs "$@" bootstrap
   ret=$?
   if [ $ret != 0 ]; then  
     echo ... Failed Building Ant Distribution !
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>