[Nice-commit] Nice/bin nicec,1.32,1.33
Brought to you by:
bonniot
|
From: <bo...@us...> - 2003-04-19 13:48:15
|
Update of /cvsroot/nice/Nice/bin
In directory sc8-pr-cvs1:/tmp/cvs-serv28282/bin
Modified Files:
nicec
Log Message:
Added the possibility to rely on external/nice-bootstrap.jar instead of a
standalone bootstrap compiler, to allow a self-contained bootstrapping process.
Index: nicec
===================================================================
RCS file: /cvsroot/nice/Nice/bin/nicec,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** nicec 21 Oct 2002 16:56:20 -0000 1.32
--- nicec 19 Apr 2003 13:48:10 -0000 1.33
***************
*** 76,81 ****
done
! find_home "$scriptName"
! NICEC=${APPHOME}/share/java/nice.jar
case $progname in
--- 76,83 ----
done
! if [ -z "$NICEC_JAR" ]; then
! find_home "$scriptName"
! NICEC_JAR=${APPHOME}/share/java/nice.jar
! fi
case $progname in
***************
*** 84,90 ****
# We don't want that by default (if CLASSPATH is empty).
if [ -z "${CLASSPATH}" ]; then
! CLASSPATH=${NICEC}
else
! CLASSPATH=${NICEC}:${CLASSPATH}
fi
if [ $experimental = true ]; then
--- 86,92 ----
# We don't want that by default (if CLASSPATH is empty).
if [ -z "${CLASSPATH}" ]; then
! CLASSPATH=${NICEC_JAR}
else
! CLASSPATH=${NICEC_JAR}:${CLASSPATH}
fi
if [ $experimental = true ]; then
***************
*** 93,97 ****
export CLASSPATH
! system_args="--runtime=${NICEC}"
gcj="`which gcj 2>/dev/null`"
--- 95,99 ----
export CLASSPATH
! system_args="--runtime=${NICEC_JAR}"
gcj="`which gcj 2>/dev/null`"
|