You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by jh...@locus.apache.org on 2000/03/21 00:47:12 UTC

cvs commit: jakarta-tomcat build.sh

jhunter     00/03/20 15:47:12

  Modified:    .        build.sh
  Log:
  Made the build work under IRIX by adding $JAVA_HOME/lib/dev.jar to the "cp"
  classpath.  That's where IRIX puts the javac classes.  Go figure.
  
  Revision  Changes    Path
  1.9       +2 -2      jakarta-tomcat/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/build.sh,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- build.sh	2000/02/03 07:13:41	1.8
  +++ build.sh	2000/03/20 23:47:12	1.9
  @@ -1,6 +1,6 @@
   #! /bin/sh
   
  -# $Id: build.sh,v 1.8 2000/02/03 07:13:41 akv Exp $
  +# $Id: build.sh,v 1.9 2000/03/20 23:47:12 jhunter Exp $
   
   if [ -z "$JAVA_HOME" ]
   then
  @@ -16,6 +16,6 @@
   
   JAVACMD=$JAVA_HOME/bin/java
   
  -cp=../jakarta-ant/lib/ant.jar:../jakarta-tools/moo.jar:../jakarta-ant/lib/xml.jar:../build/tomcat/classes:$JAVA_HOME/lib/tools.jar
  +cp=../jakarta-ant/lib/ant.jar:../jakarta-tools/moo.jar:../jakarta-ant/lib/xml.jar:../build/tomcat/classes:$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/dev.jar
   
   $JAVACMD -classpath $cp:$CLASSPATH org.apache.tools.ant.Main "$@"