Bug 10740 - cygwin ant script needs to call cygpath on ANT_LIB
Summary: cygwin ant script needs to call cygpath on ANT_LIB
Status: RESOLVED DUPLICATE of bug 10664
Alias: None
Product: Ant
Classification: Unclassified
Component: Wrapper scripts (show other bugs)
Version: 1.5
Hardware: PC Windows XP
: P3 minor (vote)
Target Milestone: ---
Assignee: Ant Notifications List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-07-12 14:52 UTC by Kenji Matsuoka
Modified: 2008-02-22 12:18 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Kenji Matsuoka 2002-07-12 14:52:00 UTC
ANT_LIB needs to be transformed to a unix path, otherwise the CLASSPATH 
doesn't get set correctly later on.

***************
*** 76,81 ****
--- 76,83 ----
  if $cygwin ; then
    [ -n "$ANT_HOME" ] &&
      ANT_HOME=`cygpath --unix "$ANT_HOME"`
+   [ -n "$ANT_LIB" ] &&
+     ANT_LIB=`cygpath --unix "$ANT_LIB"`
    [ -n "$JAVA_HOME" ] &&
      JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
    [ -n "$CLASSPATH" ] &&
Comment 1 Stephane Bailliez 2002-07-12 14:53:49 UTC
Expect a 1.5.1 release in a repository near you :)

*** This bug has been marked as a duplicate of 10664 ***
Comment 2 Kenji Matsuoka 2002-07-12 14:56:03 UTC
Damn, you're fast! :-)