A quick patch so that it is possible to build batik on cygwin Keiron.
Index: build.sh =================================================================== RCS file: /home/cvs/xml-batik/build.sh,v retrieving revision 1.11 diff -u -r1.11 build.sh --- build.sh 23 Oct 2001 13:42:29 -0000 1.11 +++ build.sh 5 Mar 2003 01:30:27 -0000 @@ -16,10 +16,27 @@ exit 1 fi +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +case "`uname`" in + CYGWIN*) cygwin=true ;; +esac + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --unix "$JAVA_HOME"` +fi + # ----- Set Up The Runtime Classpath ------------------------------------------ CP=$JAVA_HOME/lib/tools.jar:$ANT_HOME/lib/build/ant_1_4_1.jar:./lib/build/crimson-ant.jar:./lib/build/jaxp.jar - + +if $cygwin; then + JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` + CP=`cygpath --path --windows "$CP"` +fi + # ----- Execute The Requested Build ------------------------------------------- TARGET=$1;
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]