yoavs       2004/10/14 10:32:04

  Modified:    catalina/src/bin setclasspath.sh
               webapps/docs changelog.xml
  Log:
  Bugzilla 31623
  
  Revision  Changes    Path
  1.9       +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.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- setclasspath.sh   26 Jul 2004 22:01:19 -0000      1.8
  +++ setclasspath.sh   14 Oct 2004 17:32:04 -0000      1.9
  @@ -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
  
  
  
  1.147     +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.146
  retrieving revision 1.147
  diff -u -r1.146 -r1.147
  --- changelog.xml     14 Oct 2004 17:25:32 -0000      1.146
  +++ changelog.xml     14 Oct 2004 17:32:04 -0000      1.147
  @@ -43,6 +43,9 @@
         <fix>
           <bug>31273</bug>: Add support for derefaliases in JNDIRealm. (markt)
         </fix>
  +      <fix>
  +        <bug>31623</bug>: Better OS400 support in setclasspath.sh. (yoavs)
  +      </fix>
       </changelog>
     </subsection>
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to