conor       2003/02/21 03:53:27

  Modified:    src/script ant
  Log:
  Remove incorrect --path arguments to cygpath
  
  PR:     17212
  Submitted by:   Shankar Unni
  
  Revision  Changes    Path
  1.33      +3 -3      ant/src/script/ant
  
  Index: ant
  ===================================================================
  RCS file: /home/cvs/ant/src/script/ant,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -w -u -r1.32 -r1.33
  --- ant       2 Feb 2003 11:50:08 -0000       1.32
  +++ ant       21 Feb 2003 11:53:26 -0000      1.33
  @@ -167,11 +167,11 @@
   
   # For Cygwin, switch paths to Windows format before running java
   if $cygwin; then
  -  ANT_HOME=`cygpath --path --windows "$ANT_HOME"`
  -  JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
  +  ANT_HOME=`cygpath --windows "$ANT_HOME"`
  +  JAVA_HOME=`cygpath --windows "$JAVA_HOME"`
     CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
     LOCALCLASSPATH=`cygpath --path --windows "$LOCALCLASSPATH"`
  -  CYGHOME=`cygpath --path --windows "$HOME"`
  +  CYGHOME=`cygpath --windows "$HOME"`
   fi
   
   if [ -n "$CYGHOME" ]; then
  
  
  

Reply via email to