DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23312>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23312

Bug in setclasspath.sh startup script

           Summary: Bug in setclasspath.sh startup script
           Product: Tomcat 5
           Version: 5.0.12
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Unknown
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Changes were made to introduce specialized behavior for os400.  In catalina.sh,
the variable os400 is set to either "true" or "false".  Thereafter, tests are
made in this fashion:

if $os400; then

The same variable is also used in setclasspath.sh.  However, the test there is

if [ ! "$os400" ]; then

which will always evaluate to false, given that the variable is set.

The setclasspath.sh script can be modified to correct this faulty behavior by 
using this form instead:

if ! "$os400"; then

At the moment this problem prevents a user from starting Tomcat in debug mode.

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

Reply via email to