diff options
author | Thomas Matthijs <axxo@gentoo.org> | 2005-07-11 12:09:28 +0000 |
---|---|---|
committer | Thomas Matthijs <axxo@gentoo.org> | 2005-07-11 12:09:28 +0000 |
commit | e09bdfe4a06ad868a8a1bb3bed6605754279dbf0 (patch) | |
tree | 6012f736dc5c6584fe1be407288aefe67c9db90d /app-editors/jext/files | |
parent | stable on amd64 wrt bug 96767 (diff) | |
download | gentoo-2-e09bdfe4a06ad868a8a1bb3bed6605754279dbf0.tar.gz gentoo-2-e09bdfe4a06ad868a8a1bb3bed6605754279dbf0.tar.bz2 gentoo-2-e09bdfe4a06ad868a8a1bb3bed6605754279dbf0.zip |
cleanup
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-editors/jext/files')
-rw-r--r-- | app-editors/jext/files/jext-gentoo.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-editors/jext/files/jext-gentoo.sh b/app-editors/jext/files/jext-gentoo.sh index bac53dfb37a4..ea5681724daf 100644 --- a/app-editors/jext/files/jext-gentoo.sh +++ b/app-editors/jext/files/jext-gentoo.sh @@ -36,7 +36,7 @@ fi if ! [ -f ~/.jext/variables ] then echo "JEXT_HOME="/usr/share/jext/lib > ~/.jext/variables - echo "JAVA_CMD="`java-config --java` >>~/.jext/variables + echo "JAVA_CMD=java" >>~/.jext/variables fi @@ -47,4 +47,4 @@ JAVA_OPT=`grep JAVA_OPT ~/.jext/variables | cut -f2 -d=` # Launch JEXT -exec "$JAVA_CMD" $JAVA_OPTS -Dpython=`java-config --classpath=jython` -classpath "`java-config --classpath=jython`:`java-config --classpath=jext`" org.jext.Jext "$@" +exec "$JAVA_CMD" $JAVA_OPTS -Dpython=`java-config --classpath=jython` -classpath "`java-config --classpath=jython,jext`" org.jext.Jext "$@" |