summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2005-05-03 20:04:51 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2005-05-03 20:04:51 +0000
commit2c9ee4d0acb79d582d2d712b3ec54ee31538aa7d (patch)
tree0330166292cff2122eb18b4db921cc0ad4c19668 /firefox.sh.in
parent- Firefox script fixes to support multilib installs. (diff)
downloadlibrewolf-fedora-ff-2c9ee4d0acb79d582d2d712b3ec54ee31538aa7d.tar.gz
librewolf-fedora-ff-2c9ee4d0acb79d582d2d712b3ec54ee31538aa7d.tar.bz2
librewolf-fedora-ff-2c9ee4d0acb79d582d2d712b3ec54ee31538aa7d.zip
- Patch from Marcel Mol supporting launching with filenames containing
whitespace.
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 7526330..2db40f3 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -168,7 +168,7 @@ if [ "${USE_EXIST}" -eq "1" ] && [ "${ALREADY_RUNNING}" -eq "1" ]; then
# if it doesn't begin with a '/' and it exists when the pwd is
# prepended to it then append the full path
echo $opt | grep -e '^/' 2>/dev/null > /dev/null
- if [ "${RETURN_VAL}" -ne "0" ] && [ -e `pwd`/$opt ]; then
+ if [ "${RETURN_VAL}" -ne "0" ] && [ -e "`pwd`/$opt" ]; then
opt="`pwd`/$opt"
fi
exec $MOZ_CLIENT_PROGRAM $MOZ_CLIENT_PROGRAM_PARAM "openurl($opt)" 2>/dev/null >/dev/null
bgstack15