[Swift-commit] r4108 - usertools/plotter
noreply at svn.ci.uchicago.edu
noreply at svn.ci.uchicago.edu
Tue Feb 15 22:53:06 CST 2011
Author: wozniak
Date: 2011-02-15 22:53:06 -0600 (Tue, 15 Feb 2011)
New Revision: 4108
Modified:
usertools/plotter/classpath.zsh
Log:
Fix classpath on Cygwin
Modified: usertools/plotter/classpath.zsh
===================================================================
--- usertools/plotter/classpath.zsh 2011-02-15 23:34:26 UTC (rev 4107)
+++ usertools/plotter/classpath.zsh 2011-02-16 04:53:06 UTC (rev 4108)
@@ -5,9 +5,11 @@
if [[ $( uname ) == CYGWIN* ]]
then
typeset -T CP cp ";"
- cp+=( ${classpath} )
- cp+=${PLOTTERS}/src
- cp+=( ${PLOTTERS}/lib/*.jar )
+ cp+=c:/cygwin${PLOTTERS}/src
+ for jar in ${PLOTTERS}/lib/*.jar
+ do
+ cp+=c:/cygwin${jar}
+ done
else
typeset -T CP cp
CP=${CLASSPATH}:${PLOTTERS}/src
More information about the Swift-commit
mailing list