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=12288>. 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=12288 setting of ANT_LIB in CYGWIN environment Summary: setting of ANT_LIB in CYGWIN environment Product: Ant Version: 1.5 Platform: PC OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: Wrapper scripts AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] The ANT_LIB env variable is set prior to using cygpath. This means that if you set ANT_HOME as a w32 env variable the ant script doesn't work under cygwin. Moving the the setting of the ANT_LIB variable under the cygwin stuff corrects this <snip> # set ANT_LIB location --- THIS SHOULD BE AFTER THE CYGWIN SECTION>>>>> ANT_LIB=${ANT_HOME}/lib # For Cygwin, ensure paths are in UNIX format before anything is touched if $cygwin ; then [ -n "$ANT_HOME" ] && ANT_HOME=`cygpath --unix "$ANT_HOME"`; [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`; [ -n "$CLASSPATH" ] && CLASSPATH=`cygpath --path --unix "$CLASSPATH"`; fi # set ANT_LIB location --- THIS IS THE CORRECT LOCATION ANT_LIB=${ANT_HOME}/lib -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
