diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-06-12 12:43:43 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-06-12 12:43:43 +0000 |
commit | 9bba5d97cd658247c56d69eaa0fb32320246c841 (patch) | |
tree | eb3e78e4df3817fec77a7edeb292ae8140b04453 /java | |
parent | 5c828039f2499688bc77360d14a64142a1256169 (diff) | |
download | FreeBSD-ports-9bba5d97cd658247c56d69eaa0fb32320246c841.zip FreeBSD-ports-9bba5d97cd658247c56d69eaa0fb32320246c841.tar.gz |
Handle comments in all places.
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 5507efe..d7a20ba 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 |