aboutsummaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorlioux <lioux@FreeBSD.org>2002-08-16 10:18:14 +0800
committerlioux <lioux@FreeBSD.org>2002-08-16 10:18:14 +0800
commitebedf264755ce48d2593cff24a790c5c99217c9a (patch)
tree6c4b59333e54781a9bbbf49a2f1f06d23d63f3d0 /graphics
parent2ac0f23ba71ff5be7bc91ad91ec26538c24fce75 (diff)
downloadfreebsd-ports-gnome-ebedf264755ce48d2593cff24a790c5c99217c9a.tar.gz
freebsd-ports-gnome-ebedf264755ce48d2593cff24a790c5c99217c9a.tar.zst
freebsd-ports-gnome-ebedf264755ce48d2593cff24a790c5c99217c9a.zip
Replace sh shell parameter $* with safer "${@}"
Diffstat (limited to 'graphics')
-rw-r--r--graphics/aoi/files/wrapper.sh2
-rw-r--r--graphics/linux-divxplayer/files/wrapper.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/graphics/aoi/files/wrapper.sh b/graphics/aoi/files/wrapper.sh
index b4039bc78c2a..5252f680d433 100644
--- a/graphics/aoi/files/wrapper.sh
+++ b/graphics/aoi/files/wrapper.sh
@@ -6,4 +6,4 @@ JAR_DIR="%%JAR_DIR%%"
JAR_FILE="%%JAR_FILE%%"
( cd ${PREFIX}/${JAR_DIR} && \
- ${JAVAVM} -jar ${PREFIX}/${JAR_DIR}/${JAR_FILE} $* )
+ ${JAVAVM} -jar ${PREFIX}/${JAR_DIR}/${JAR_FILE} "${@}" )
diff --git a/graphics/linux-divxplayer/files/wrapper.sh b/graphics/linux-divxplayer/files/wrapper.sh
index 5b56eef46a6b..06da03f21479 100644
--- a/graphics/linux-divxplayer/files/wrapper.sh
+++ b/graphics/linux-divxplayer/files/wrapper.sh
@@ -11,4 +11,4 @@ then
rm -f ~/.divxPlayer/DivXPlayer.dbf
fi
-exec ${PROGRAM}.bin ${*}
+exec ${PROGRAM}.bin "${@}"