diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2006-02-05 10:58:02 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2006-02-05 10:58:02 +0000 |
commit | 7efb5e0e255c9378d3847eb4c79453733657fc18 (patch) | |
tree | 0c2dab93598ae1c830b321c2257d1f3d0b1d2f9b /dev-java/jython/files | |
parent | move compressed patches to the mirrors (diff) | |
download | gentoo-2-7efb5e0e255c9378d3847eb4c79453733657fc18.tar.gz gentoo-2-7efb5e0e255c9378d3847eb4c79453733657fc18.tar.bz2 gentoo-2-7efb5e0e255c9378d3847eb4c79453733657fc18.zip |
Fixed a typo with the CLASSPATH environment variable usage in the starter script reported in bug #121365.
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'dev-java/jython/files')
-rw-r--r-- | dev-java/jython/files/jython | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-java/jython/files/jython b/dev-java/jython/files/jython index 9667d38756b1..402f84dd67aa 100644 --- a/dev-java/jython/files/jython +++ b/dev-java/jython/files/jython @@ -1,7 +1,7 @@ #!/bin/sh -############################################################################### -# -# This file generated by Jython installer -# Created on XXX by root -exec $(java-config --java) -Djava.library.path="$(java-config -i libreadline-java)" -Dpython.home="/usr/share/jython" -classpath "$(java-config --classpath=jython,libreadline-java 2>/dev/null):CLASSPATH" "org.python.util.jython" "$@" +exec $(java-config --java) \ + -Djava.library.path="$(java-config -i libreadline-java)" \ + -Dpython.home="/usr/share/jython" \ + -classpath "${CLASSPATH}:$(java-config --classpath=jython,libreadline-java 2>/dev/null)" \ + "org.python.util.jython" "$@" |