diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/aoi/files/wrapper.sh | 2 | ||||
-rw-r--r-- | graphics/linux-divxplayer/files/wrapper.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/graphics/aoi/files/wrapper.sh b/graphics/aoi/files/wrapper.sh index b4039bc..5252f68 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 5b56eef..06da03f 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 "${@}" |