diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-08-16 02:18:14 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-08-16 02:18:14 +0000 |
commit | 87879dbfdd2155bc9a8c80296ce9f7fa8353eeec (patch) | |
tree | d15057a61367c1ee47626236f1e901cdcf2f0c9f /net-p2p/phex/files/wrapper.sh | |
parent | Add devel/p5-DB_File-Lock, a wrapper for the DB_File module, adding (diff) |
Replace sh shell parameter $* with safer "${@}"
Diffstat (limited to '')
-rw-r--r-- | net-p2p/phex/files/wrapper.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-p2p/phex/files/wrapper.sh b/net-p2p/phex/files/wrapper.sh index aab757cc6841..0f4e2ba5d1b1 100644 --- a/net-p2p/phex/files/wrapper.sh +++ b/net-p2p/phex/files/wrapper.sh @@ -5,4 +5,4 @@ JAVAVM="%%JAVAVM%%" JAR_DIR="%%JAR_DIR%%" JAR_FILE="%%JAR_FILE%%" -${JAVAVM} -jar ${PREFIX}/${JAR_DIR}/${JAR_FILE} $* +${JAVAVM} -jar ${PREFIX}/${JAR_DIR}/${JAR_FILE} "${@}" |