You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by jo...@hyperreal.org on 1999/11/30 23:37:42 UTC

cvs commit: jakarta-tools/ant build.sh

jons        99/11/30 14:37:41

  Modified:    ant      build.sh
  Log:
  don't use [[ ]] since on freebsd it complains. test is more portable.
  
  add javac.jar to the classpath...note that you can't build ant on a 1.1
  system because javadoc2 requires jdk1.2 classes to build it. how annoying.
  
  Revision  Changes    Path
  1.4       +2 -2      jakarta-tools/ant/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-tools/ant/build.sh,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.sh	1999/11/23 08:27:23	1.3
  +++ build.sh	1999/11/30 22:37:38	1.4
  @@ -1,8 +1,8 @@
   #!/bin/sh
   
  -ADDL_CLASSPATH=./../ant.jar:./../projectx-tr2.jar
  +ADDL_CLASSPATH=./../ant.jar:./../projectx-tr2.jar:./../javac.jar
   
  -if [[ -n $CLASSPATH ]]; then
  +if test -n $CLASSPATH ; then
     export CLASSPATH=$ADDL_CLASSPATH:$CLASSPATH
   else
     export CLASSPATH=$ADDL_CLASSPATH