I just did a checkout from cvs and got the following errors trying to do
the build:

ls: ../../jakarta-site2/lib/jdom*.jar: No such file or directory
./build.sh: [: ==: binary operator expected
./build.sh: [: ==: binary operator expected
type: jikes: not found
Java Home: /home/java/jdk1.2.2
Java compiler classic
./build.sh: -Dant.home=: command not found

I made the following changes to the build.sh file and it seems to work
fine:

Index: jetspeed/build/build.sh
===================================================================
RCS file: /products/cvs/jetspeed/jetspeed/build/build.sh,v
retrieving revision 1.15
diff -r1.15 build.sh
30c30
< if [ "$ANT_HOME" == "" ]; then
---
> if [ "$ANT_HOME" = "" ]; then
59c59
< if [ "$JAVABIN" == "" ] ; then
---
> if [ "$JAVABIN" = "" ] ; then
104,106c104,116
< ${JAVABIN} -Dant.home="${ANT_HOME}" -DJAVAC=${JAVAC}\
<            -classpath "${CLASSPATH}" org.apache.tools.ant.Main \
<            -buildfile "${BUILDFILE}" "$@"
---
> ${JAVABIN} -Dant.home=${ANT_HOME} -DJAVAC=${JAVAC}\
>            -classpath ${CLASSPATH} org.apache.tools.ant.Main \
>            -buildfile ${BUILDFILE} "$@"
>

Mike



--
--------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/jetspeed@list.working-dogs.com/>
List Help?:          [EMAIL PROTECTED]

Reply via email to