remm        01/04/16 19:27:24

  Modified:    .        build.sh
  Log:
  - Under cygwin, build.sh won't run when paths in the CLASSLIB contain spaces.
    Submitted by Peter Hawkins <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.13      +2 -2      jakarta-slide/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/build.sh,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.sh  2001/02/11 21:29:52     1.12
  +++ build.sh  2001/04/17 02:27:24     1.13
  @@ -1,6 +1,6 @@
   #! /bin/sh
   
  -# $Id: build.sh,v 1.12 2001/02/11 21:29:52 remm Exp $
  +# $Id: build.sh,v 1.13 2001/04/17 02:27:24 remm Exp $
   
   BUILDFILE=build.xml
   
  @@ -26,7 +26,7 @@
      LOCALCLASSPATH=`cygpath --path --windows "$LOCALCLASSPATH"`
   fi
   
  -${JAVA_HOME}/bin/java -classpath ${LOCALCLASSPATH} org.apache.tools.ant.Main \
  +${JAVA_HOME}/bin/java -classpath "${LOCALCLASSPATH}" org.apache.tools.ant.Main \
                         -buildfile ${BUILDFILE} \
                         -Djaxp.home=$JAXP_HOME \
                         -Dservlet.jar=$SERVLETAPI_HOME/lib/servlet.jar \
  
  
  

Reply via email to