>-----Original Message----- >From: Antoine L�vy-Lambert [mailto:[EMAIL PROTECTED] >Sent: 23 February 2004 23:26 >To: jakarta-gump list >Subject: various gump remarks/problems > > >1) running gumpy under cygwin : >-------------------------------- >is actually difficult, maybe not something to pursue. >The reason : gumpy starts ant with classpaths and various properties >pointing to files/or directories >in cygwin format. ant is in Java and does not know anything about >cygwin, so it does not work
There are some Cygwin "recipes" that might help here (I've not tried): (taken from JMeter build.sh) # convert the existing path to unix if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] ; then CLASSPATH=`cygpath --path --unix "$CLASSPATH"` fi And # convert the unix path to windows if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] ; then CLASSPATH=`cygpath --path --windows "$CLASSPATH"` fi Warning: may need to make sure that OSTYPE is set up as an exported symbol. HTH. ___________________________________________________________________________ This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Atos Origin group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted. ___________________________________________________________________________ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
