Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@www.apache.org Received: (qmail 41111 invoked from network); 14 Oct 2004 17:33:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 14 Oct 2004 17:33:44 -0000 Received: (qmail 69168 invoked by uid 500); 14 Oct 2004 17:33:32 -0000 Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 69041 invoked by uid 500); 14 Oct 2004 17:33:31 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 69028 invoked by uid 500); 14 Oct 2004 17:33:31 -0000 Received: (qmail 69023 invoked by uid 99); 14 Oct 2004 17:33:31 -0000 X-ASF-Spam-Status: No, hits=-10.0 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.28) with SMTP; Thu, 14 Oct 2004 10:33:31 -0700 Received: (qmail 41039 invoked by uid 1670); 14 Oct 2004 17:33:30 -0000 Date: 14 Oct 2004 17:33:30 -0000 Message-ID: <20041014173330.41038.qmail@minotaur.apache.org> From: yoavs@apache.org To: jakarta-tomcat-catalina-cvs@apache.org Subject: cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N yoavs 2004/10/14 10:33:30 Modified: catalina/src/bin Tag: TOMCAT_5_0 setclasspath.sh webapps/docs Tag: TOMCAT_5_0 changelog.xml Log: Bugzilla 31623 Revision Changes Path No revision No revision 1.7.2.2 +3 -3 jakarta-tomcat-catalina/catalina/src/bin/setclasspath.sh Index: setclasspath.sh =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/bin/setclasspath.sh,v retrieving revision 1.7.2.1 retrieving revision 1.7.2.2 diff -u -r1.7.2.1 -r1.7.2.2 --- setclasspath.sh 21 Aug 2004 15:49:50 -0000 1.7.2.1 +++ setclasspath.sh 14 Oct 2004 17:33:30 -0000 1.7.2.2 @@ -10,7 +10,7 @@ echo "This environment variable is needed to run this program" exit 1 fi -if $os400; then +if [ "$os400" = "true" ]; then if [ ! -x "$JAVA_HOME"/bin/java -o ! -x "$JAVA_HOME"/bin/javac ]; then echo "The JAVA_HOME environment variable is not defined correctly" echo "This environment variable is needed to run this program" @@ -55,7 +55,7 @@ # Set standard commands for invoking Java. _RUNJAVA="$JAVA_HOME"/bin/java -if [ $os400 = false ]; then +if [ "$os400" != "true" ]; then _RUNJDB="$JAVA_HOME"/bin/jdb fi _RUNJAVAC="$JAVA_HOME"/bin/javac No revision No revision 1.70.2.53 +3 -0 jakarta-tomcat-catalina/webapps/docs/changelog.xml Index: changelog.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v retrieving revision 1.70.2.52 retrieving revision 1.70.2.53 diff -u -r1.70.2.52 -r1.70.2.53 --- changelog.xml 14 Oct 2004 17:26:48 -0000 1.70.2.52 +++ changelog.xml 14 Oct 2004 17:33:30 -0000 1.70.2.53 @@ -25,6 +25,9 @@ 31273: Add support for derefaliases in JNDIRealm. (markt) + + 31623: Better OS400 support in setclasspath.sh. (yoavs) + --------------------------------------------------------------------- To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org