From: Geert J. <gj...@us...> - 2002-08-17 11:45:02
|
Update of /cvsroot/woc/woc/source/wocjava In directory usw-pr-cvs1:/tmp/cvs-serv17024 Modified Files: Makefile.am Log Message: support for cygwin added Index: Makefile.am =================================================================== RCS file: /cvsroot/woc/woc/source/wocjava/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile.am 15 Aug 2002 13:05:41 -0000 1.4 --- Makefile.am 17 Aug 2002 11:44:59 -0000 1.5 *************** *** 14,17 **** --- 14,23 ---- JARS=`ls -1 ../../lib/java/*.jar | perl -ne "s/\n|\r/:/g; print;"` + # convert the unix path to windows + if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] + || [ "$OSTYPE" = "posix" ] ; then + JARS=`cygpath --path --windows "$JARS"` + fi + all: jar |