diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-06-12 12:43:43 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-06-12 12:43:43 +0000 |
commit | 54240bf8a16600148fab6e9d341c82e78abcbf4a (patch) | |
tree | f49307798098ecec8beb6f78e2dc92335750b31e /java | |
parent | 5a7231e73bdc4ffb429b329ce3da6f8df516cbd2 (diff) | |
download | ports-54240bf8a16600148fab6e9d341c82e78abcbf4a.tar.gz ports-54240bf8a16600148fab6e9d341c82e78abcbf4a.zip |
Notes
Diffstat (limited to 'java')
-rw-r--r-- | java/javavmwrapper/src/javavmwrapper.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/java/javavmwrapper/src/javavmwrapper.sh b/java/javavmwrapper/src/javavmwrapper.sh index 5507efe3cbc1..d7a20baabe20 100644 --- a/java/javavmwrapper/src/javavmwrapper.sh +++ b/java/javavmwrapper/src/javavmwrapper.sh @@ -42,8 +42,9 @@ registerVM () { /usr/bin/touch "${CONF}" fi - if [ ! -x "${1}" ]; then - /bin/echo "${IAM}: warning: the specified JavaVM \"${1}\" either not exists of not executable" >&2 + VM=`/bin/echo "${1}" | sed 's|#.*||'` + if [ ! -x ${VM} ]; then + /bin/echo "${IAM}: warning: the specified JavaVM \"${VM}\" either not exists of not executable" >&2 fi /bin/ed "${CONF}" >/dev/null <<EOF @@ -117,4 +118,4 @@ for JAVAVM in ${VMS}; do done echo "${IAM}: error: no suitable JavaVMs found" >&2 -exit 1
\ No newline at end of file +exit 1 |