summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2007-12-13 14:38:04 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2007-12-13 14:38:04 +0000
commit8bebccad42c5a57ea2e1a40048302c2893244adf (patch)
tree17e358007cd6b9a5f8008720881c8a6bcfe833e1 /firefox.spec
parentAdd LICENSE to %doc (diff)
downloadlibrewolf-fedora-ff-8bebccad42c5a57ea2e1a40048302c2893244adf.tar.gz
librewolf-fedora-ff-8bebccad42c5a57ea2e1a40048302c2893244adf.tar.bz2
librewolf-fedora-ff-8bebccad42c5a57ea2e1a40048302c2893244adf.zip
- Fix the getStartPage method to not return blank. Patch by
pspencer@fields.utoronto.ca
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec9
1 files changed, 8 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index 8f48443..0ed3d00 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -12,7 +12,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 2.0.0.10
-Release: 4%{?dist}
+Release: 5%{?dist}
URL: http://www.mozilla.org/projects/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -45,6 +45,7 @@ Patch22: firefox-1.1-default-applications.patch
Patch40: firefox-1.5-bullet-bill.patch
Patch41: firefox-2.0.0.4-undo-uriloader.patch
Patch42: firefox-1.1-uriloader.patch
+Patch43: firefox-2.0-getstartpage.patch
# font system fixes
Patch83: firefox-1.5-pango-cursor-position.patch
@@ -144,6 +145,7 @@ removed in favor of xulrunner-devel.
%patch40 -p1 -b .bullet-bill
%patch41 -p1 -b .undo-uriloader
%patch42 -p0 -b .uriloader
+%patch43 -p1 -b .getstartpage
%patch83 -p1 -b .pango-cursor-position
%patch84 -p0 -b .pango-printing
@@ -372,6 +374,7 @@ fi
if [ $1 -eq 0 ]; then
%{__rm} -rf %{mozappdir}/components
%{__rm} -rf %{mozappdir}/extensions
+ %{__rm} -rf %{mozappdir}/plugins
fi
@@ -438,6 +441,10 @@ fi
#---------------------------------------------------------------------
%changelog
+* Thu Dec 13 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.10-5
+- Fix the getStartPage method to not return blank.
+ Patch by pspencer@fields.utoronto.ca
+
* Sun Dec 9 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.10-4
- Fix up some rpmlint warnings
- Use only one pref for the homepage for now
bgstack15