Update of /cvsroot/jython/jython/installer
In directory slayer.i.sourceforge.net:/tmp/cvs-serv8931
Modified Files:
jython_template.unix_sh jythonc_template.unix_sh
Log Message:
Fix bug 124026: Wrapper doesn't pass command line arguments properly
Index: jython_template.unix_sh
===================================================================
RCS file: /cvsroot/jython/jython/installer/jython_template.unix_sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** jython_template.unix_sh 2000/11/24 16:58:57 1.1
--- jython_template.unix_sh 2000/12/01 18:57:11 1.2
***************
*** 5,7 ****
# Created on XXX by @user.name@
! @jvm@ -Dpython.home=@location._top_@ -classpath "@location._top_@/jython.jar:$CLASSPATH" @classname@ $*
--- 5,7 ----
# Created on XXX by @user.name@
! @jvm@ -Dpython.home=@location._top_@ -classpath "@location._top_@/jython.jar:$CLASSPATH" @classname@ "$@"
Index: jythonc_template.unix_sh
===================================================================
RCS file: /cvsroot/jython/jython/installer/jythonc_template.unix_sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** jythonc_template.unix_sh 2000/11/24 16:58:57 1.1
--- jythonc_template.unix_sh 2000/12/01 18:57:11 1.2
***************
*** 5,7 ****
# Created on XXX by @user.name@
! @location._top_@/jython @location._top_@/Tools/jythonc/jythonc.py $@
--- 5,7 ----
# Created on XXX by @user.name@
! @location._top_@/jython @location._top_@/Tools/jythonc/jythonc.py "$@"
|