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 @@
         <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