summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2020-03-31 18:13:04 +0200
committerThomas Deutschmann <whissi@gentoo.org>2020-03-31 18:26:57 +0200
commit4108503ab5d6c56c546ba9aa6fb538972d6a9096 (patch)
tree4b33d662891f8ff9a4360e2cae8737e9ecac7cfc /www-client
parentnet-print/gutenprint: removed old 5.3.1 & dropping to ~ia64 (diff)
downloadgentoo-4108503ab5d6c56c546ba9aa6fb538972d6a9096.tar.gz
gentoo-4108503ab5d6c56c546ba9aa6fb538972d6a9096.tar.bz2
gentoo-4108503ab5d6c56c546ba9aa6fb538972d6a9096.zip
www-client/firefox: fix quoting
Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'www-client')
-rw-r--r--www-client/firefox/files/firefox.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/www-client/firefox/files/firefox.sh b/www-client/firefox/files/firefox.sh
index e3412b3b47c3..dcb2a8d606d0 100644
--- a/www-client/firefox/files/firefox.sh
+++ b/www-client/firefox/files/firefox.sh
@@ -103,8 +103,8 @@ export MOZ_ALLOW_DOWNGRADE=1
## names and contect menus
##
if [[ $@ != *"--name "* ]]; then
- set -- "--name ${DESKTOP_FILE}" "$@"
+ set -- --name "${DESKTOP_FILE}" "$@"
fi
# Run the browser
-exec ${MOZ_PROGRAM} $@
+exec ${MOZ_PROGRAM} "$@"