You are viewing a plain text version of this content. The canonical link for it is here.
Posted to watchdog-dev@jakarta.apache.org by pi...@apache.org on 2001/01/23 09:43:02 UTC

cvs commit: jakarta-watchdog-4.0 build.sh

pier        01/01/23 00:43:02

  Modified:    .        build.sh
  Log:
  Fixed a couple of bugs preventing the build on Solaris.
  
  Revision  Changes    Path
  1.2       +3 -3      jakarta-watchdog-4.0/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-watchdog-4.0/build.sh,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.sh	2000/10/03 22:18:13	1.1
  +++ build.sh	2001/01/23 08:43:01	1.2
  @@ -1,6 +1,6 @@
  -#!/bin/sh
  +#!/bin/bash
   #
  -# $Id: build.sh,v 1.1 2000/10/03 22:18:13 santosh Exp $
  +# $Id: build.sh,v 1.2 2001/01/23 08:43:01 pier Exp $
   # Ksh wrapper around ant build system.
   
   baseDir=`pwd`
  @@ -9,7 +9,7 @@
   
   ADDL_CLASSPATH=../jakarta-ant/lib/ant.jar:$JAVA_HOME/lib/tools.jar
   
  -if [ -n $CLASSPATH ]; then
  +if [ -n "$CLASSPATH" ]; then
     CLASSPATH=$CLASSPATH:$ADDL_CLASSPATH
   else
     CLASSPATH=$ADDL_CLASSPATH