Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 1378 invoked from network); 4 Nov 2005 21:07:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 Nov 2005 21:07:23 -0000 Received: (qmail 42963 invoked by uid 500); 4 Nov 2005 21:07:22 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 42931 invoked by uid 500); 4 Nov 2005 21:07:22 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 42920 invoked by uid 99); 4 Nov 2005 21:07:22 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 04 Nov 2005 13:07:22 -0800 Received: (qmail 1221 invoked by uid 65534); 4 Nov 2005 21:07:02 -0000 Message-ID: <20051104210702.1220.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r330897 - /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/config.sh Date: Fri, 04 Nov 2005 21:07:01 -0000 To: harmony-commits@incubator.apache.org From: dlydick@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dlydick Date: Fri Nov 4 13:06:53 2005 New Revision: 330897 URL: http://svn.apache.org/viewcvs?rev=330897&view=rev Log: Moved support utilities to 'support' subdirectory. Add option to select reference count garbage collection algorithm. Parse release level file more closely. Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/config.sh Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/config.sh URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/config.sh?rev=330897&r1=330896&r2=330897&view=diff ============================================================================== --- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/config.sh (original) +++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/config.sh Fri Nov 4 13:06:53 2005 @@ -136,14 +136,14 @@ # # Script setup # -chmod -w $0 ./echotest.sh +chmod -w $0 support/echotest.sh -. ./echotest.sh +. support/echotest.sh # Read release level, if found if test -f RELEASE_LEVEL then - RELEASE_LEVEL=`cat RELEASE_LEVEL` + RELEASE_LEVEL=`cat RELEASE_LEVEL | egrep -v "^#"` else RELEASE_LEVEL="" fi @@ -805,7 +805,7 @@ while true do echo "" - $echon "Garbage collection method: [stub,other] $echoc" + $echon "Garbage collection method: [stub,refcount,other] $echoc" read gcmethod case $gcmethod in @@ -923,7 +923,7 @@ SHOULDBUILD="Should 'make' construct" MSG80ALL="all: $SHOULDBUILD the entire code tree?" -MSG80JVM="jvm: $SHOULDBUILD the main develoment area?" +MSG80JVM="jvm: $SHOULDBUILD the main development area?" MSG80LIB="lib: $SHOULDBUILD the static JVM library?" MSG80MAIN="main: $SHOULDBUILD the sample main() program?" MSG80TEST="test: $SHOULDBUILD the Java test code area?" @@ -1573,7 +1573,7 @@ echo " * @b gcc means use GNU C compiler" echo " *" echo " * @b other means use the default as specified in" - echo " * @link ./MakeRules ./MakeRules@endlink" + echo " * @link support/MakeRules support/MakeRules@endlink" echo " *" echo " */" echo "#define CONFIG_CCOMPILER_$CCOMPILER" @@ -1738,15 +1738,13 @@ chmod -w $CDSD $CDSM -( - roster.sh - echo "$PGMNAME: Compile configuration: $CFGH" - echo "$PGMNAME: Code build steps: $CBSD" - echo " $CBSM" - echo "$PGMNAME: Documentation build steps: $CDSD" - echo " $CDSM" - echo "" -) | more +roster.sh +echo "$PGMNAME: Compile configuration: $CFGH" +echo "$PGMNAME: Code build steps: $CBSD" +echo " $CBSM" +echo "$PGMNAME: Documentation build steps: $CDSD" +echo " $CDSM" +echo "" #############################