|
From: Robert W. B. <rb...@di...> - 2001-03-25 17:30:19
|
[Jeff Turner] > However I'm quite likely wrong ;) So perhaps someone on a windows > computer should verify that my patch doesn't break things. Yes, I tried it on Windows (as well as linux, solaris) and the Demo files compiled fine with jythonc. It did reminded me of something when I tested it on *nix with dirs containing spaces. It seems the paths in the unix_sh templates should have quotes in case someone chooses a dir with spaces (e.g. "/home/rbill/jython test"). patch for CVS/jython/installer/jython_template.unix_sh ------------------------------------------------------- --- jython_template.unix_sh Wed Mar 14 15:39:50 2001 +++ jython_template.unix_sh Sun Mar 25 15:50:07 2001 @@ -4,4 +4,4 @@ # This file generated by Jython installer # Created on XXX by @user.name@ -@jvm@ -Dpython.home=@location._top_@ -classpath "@location._top_@/jython.jar:$CLASSPATH" @classname@ "$@" +"@jvm@" -Dpython.home="@location._top_@" -classpath "@location._top_@/jython.jar:$CLASSPATH" "@classname@" "$@" patch for CVS/jython/installer/jythonc_template.unix_sh ------------------------------------------------------- --- jythonc_template.unix_sh Wed Mar 14 15:39:50 2001 +++ jythonc_template.unix_sh Sun Mar 25 15:49:19 2001 @@ -4,4 +4,4 @@ # This file generated by Jython installer # Created on XXX by @user.name@ -@location._top_@/jython @location._top_@/Tools/jythonc/jythonc.py "$@" +"@location._top_@/jython" "@location._top_@/Tools/jythonc/jythonc.py" "$@" |