You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2002/05/02 01:36:10 UTC

DO NOT REPLY [Bug 8719] New: - catalina.sh bug

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=8719>.
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=8719

catalina.sh bug

           Summary: catalina.sh bug
           Product: Tomcat 4
           Version: Nightly Build
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Catalina
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: tmotte@s-s-t.com


I had to change the catalina.sh script because it wasn't properly handling 
variable settings for Cygwin. My version of the fixes are:

99,102c99,104
<   JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
<   CATALINA_HOME=`cygpath --path --windows "$CATALINA_HOME"`
<   CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
<   JSSE_HOME=`cygpath --path --windows "$JSSE_HOME"`
---
>   JAVA_HOME=`      cygpath --path --windows "$JAVA_HOME"`
>   CATALINA_HOME=`  cygpath --path --windows "$CATALINA_HOME"`
>   CLASSPATH=`      cygpath --path --windows "$CLASSPATH"`
>   JSSE_HOME=`      cygpath --path --windows "$JSSE_HOME"`
>   CATALINA_BASE=`  cygpath --path --windows "$CATALINA_BASE"`
>   CATALINA_TMPDIR=`cygpath --path --windows "$CATALINA_TMPDIR"`

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>