summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2006-02-23 22:08:19 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2006-02-23 22:08:19 +0000
commit56ab92bf13c68ed6601623e9e31787757f7338f3 (patch)
treea350a079104efdb810290763c765a6c6ae960182
parent- Ensure our wrapper handles URLs with commas/spaces (Ilya Konstantinov) (diff)
downloadlibrewolf-fedora-ff-56ab92bf13c68ed6601623e9e31787757f7338f3.tar.gz
librewolf-fedora-ff-56ab92bf13c68ed6601623e9e31787757f7338f3.tar.bz2
librewolf-fedora-ff-56ab92bf13c68ed6601623e9e31787757f7338f3.zip
- Rebuild
-rw-r--r--firefox.sh.in1
-rw-r--r--firefox.spec5
2 files changed, 5 insertions, 1 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 2db40f3..2623007 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -161,6 +161,7 @@ case "$opt" in
esac
if [ "${USE_EXIST}" -eq "1" ] && [ "${ALREADY_RUNNING}" -eq "1" ]; then
+ opt=`echo -n "$opt" | sed -e 's/,/%2c/g' -e 's/ /%20/g'`
# check to make sure that the command contains at least a :/ in it.
echo $opt | grep -e ':/' 2>/dev/null > /dev/null
RETURN_VAL=$?
diff --git a/firefox.spec b/firefox.spec
index 8dce32b..5640701 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -9,7 +9,7 @@
Summary: Mozilla Firefox Web browser.
Name: firefox
Version: 1.5.0.1
-Release: 4
+Release: 5
URL: http://www.mozilla.org/projects/firefox/
License: MPL/LGPL
Group: Applications/Internet
@@ -264,6 +264,9 @@ fi
#---------------------------------------------------------------------
%changelog
+* Mon Feb 20 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.1-5
+- Rebuild
+
* Mon Feb 20 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.1-4
- Ensure our wrapper handles URLs with commas/spaces (Ilya Konstantinov)
- Fix a pango typo
bgstack15