summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firefox.sh.in2
-rw-r--r--firefox.spec4
2 files changed, 5 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
diff --git a/firefox.spec b/firefox.spec
index 9a812ae..7046c0b 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -332,6 +332,10 @@ fi
#---------------------------------------------------------------------
%changelog
+* Tue May 3 2005 Christopher Aillon <caillon@redhat.com>
+- Patch from Marcel Mol supporting launching with filenames
+ containing whitespace.
+
* Tue May 3 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.3-3
- Firefox script fixes to support multilib installs.
- Add upstream patch to fix bidi justification of pango
bgstack15