summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2006-12-22 20:17:09 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2006-12-22 20:17:09 +0000
commitbfb255edb45fab3c395477737b22bba3d83407d3 (patch)
tree0c5f8204495eabe81320707d0ed0cd30c616d8fa /firefox.spec
parent*** empty log message *** (diff)
downloadlibrewolf-fedora-ff-bfb255edb45fab3c395477737b22bba3d83407d3.tar.gz
librewolf-fedora-ff-bfb255edb45fab3c395477737b22bba3d83407d3.tar.bz2
librewolf-fedora-ff-bfb255edb45fab3c395477737b22bba3d83407d3.zip
- Strip out some frequent warnings; they muddy up the build output
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec11
1 files changed, 9 insertions, 2 deletions
diff --git a/firefox.spec b/firefox.spec
index 6b4ae84..b5b0f82 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -11,7 +11,7 @@
Summary: Mozilla Firefox Web browser.
Name: firefox
Version: 2.0.0.1
-Release: 1%{?dist}
+Release: 2%{?dist}
URL: http://www.mozilla.org/projects/firefox/
License: MPL/LGPL
Group: Applications/Internet
@@ -184,7 +184,11 @@ removed in favor of xulrunner-devel.
%build
-export RPM_OPT_FLAGS=`echo $RPM_OPT_FLAGS | %{__sed} s/-O2/-Os/`
+# Build with -Os as it helps the browser; also, don't override mozilla's warning
+# level; they use -Wall but disable a few warnings that show up _everywhere_
+MOZ_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | %{__sed} -e 's/-O2/-Os/' -e 's/-Wall//')
+
+export RPM_OPT_FLAGS=$MOZ_OPT_FLAGS
export PREFIX='%{_prefix}'
export LIBDIR='%{_libdir}'
@@ -404,6 +408,9 @@ fi
#---------------------------------------------------------------------
%changelog
+* Fri Dec 22 2006 Christopher Aillon <caillon@redhat.com> 2.0.0.1-2
+- Strip out some frequent warnings; they muddy up the build output
+
* Thu Dec 21 2006 Christopher Aillon <caillon@redhat.com> 2.0.0.1-1
- Update to 2001
bgstack15