summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@fedoraproject.org>2009-08-06 13:10:16 +0000
committerMartin Stransky <stransky@fedoraproject.org>2009-08-06 13:10:16 +0000
commite5f8814cb2ed74fcc48b800a34369ca891628d7d (patch)
treeebc106c159a851957a19cd4154e05f38aaae2782
parentRemove spurious BuildRequires - these are all BuildRequire'd by (diff)
downloadlibrewolf-fedora-ff-e5f8814cb2ed74fcc48b800a34369ca891628d7d.tar.gz
librewolf-fedora-ff-e5f8814cb2ed74fcc48b800a34369ca891628d7d.tar.bz2
librewolf-fedora-ff-e5f8814cb2ed74fcc48b800a34369ca891628d7d.zip
Fix for #437596 - Firefox needs to register proper name for session restore
-rw-r--r--firefox.sh.in5
-rw-r--r--firefox.spec6
2 files changed, 10 insertions, 1 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 6994e0b..8258896 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -102,6 +102,11 @@ fi
export MOZ_PLUGIN_PATH
##
+## Set MOZ_APP_LAUNCHER for gnome-session
+##
+export MOZ_APP_LAUNCHER="/usr/bin/firefox"
+
+##
## If plugins are wrapped, check them
##
if [ -x "/usr/bin/mozilla-plugin-config" ]
diff --git a/firefox.spec b/firefox.spec
index 1c87ef8..60a3c78 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -19,7 +19,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 3.5.2
-Release: 1%{?dist}
+Release: 2%{?dist}
URL: http://www.mozilla.org/projects/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -329,6 +329,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Thu Aug 6 2009 Martin Stransky <stransky@redhat.com> - 3.5.2-2
+- Fix for #437596 - Firefox needs to register proper name
+ for session restore.
+
* Mon Aug 3 2009 Christopher Aillon <caillon@redhat.com> - 3.5.2-1
- Update to 3.5.2
bgstack15