Update of /cvsroot/bprocessor/build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29182
Modified Files:
build.sh
Log Message:
Added quotes around path variables, since they may contain spaces
Index: build.sh
===================================================================
RCS file: /cvsroot/bprocessor/build/build.sh,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** build.sh 27 Jun 2005 09:32:45 -0000 1.1.1.1
--- build.sh 26 Oct 2005 09:13:01 -0000 1.2
***************
*** 6,14 ****
fi
! if [ -z $JAVA_HOME ]; then
echo "Please set the JAVA_HOME variable."
exit 1
fi
! export PATH=$ANT_HOME/bin:$JAVA_HOME/bin:$PATH
ant $*
--- 6,16 ----
fi
! if [ -z "$JAVA_HOME" ]; then
echo "Please set the JAVA_HOME variable."
exit 1
fi
! echo $JAVA_HOME
!
! export PATH="$ANT_HOME"/bin:"$JAVA_HOME"/bin:$PATH
ant $*
|