summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorTill Maas <opensource@till.name>2015-05-22 18:19:31 +0200
committerTill Maas <opensource@till.name>2015-05-22 18:23:53 +0200
commitded1820a4f7f445b440a40a0e584bf3038307066 (patch)
treefbf62015e443e959f5a94bebbd517b34a49e4b26 /firefox.spec
parentUpdate to 38.0.1 (diff)
downloadlibrewolf-fedora-ff-ded1820a4f7f445b440a40a0e584bf3038307066.tar.gz
librewolf-fedora-ff-ded1820a4f7f445b440a40a0e584bf3038307066.tar.bz2
librewolf-fedora-ff-ded1820a4f7f445b440a40a0e584bf3038307066.zip
Rebuilt with hardening flags so it passes the checksec test;
- See also https://fedoraproject.org/wiki/Changes/Harden_All_Packages
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec10
1 files changed, 8 insertions, 2 deletions
diff --git a/firefox.spec b/firefox.spec
index d671d2a..33ce2b2 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -107,7 +107,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 38.0.1
-Release: 1%{?pre_tag}%{?dist}
+Release: 2%{?pre_tag}%{?dist}
URL: http://www.mozilla.org/projects/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -463,7 +463,9 @@ MOZ_OPT_FLAGS=$(echo "$RPM_OPT_FLAGS" | %{__sed} -e 's/-Wall//')
#rhbz#1037063
# -Werror=format-security causes build failures when -Wno-format is explicitly given
# for some sources
-MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -Wformat-security -Wformat -Werror=format-security"
+# Explicitly force the hardening flags for Firefox so it passes the checksec test;
+# See also https://fedoraproject.org/wiki/Changes/Harden_All_Packages
+MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -Wformat-security -Wformat -Werror=format-security -fPIC -pie -Wl,-z,relro -Wl,-z,now"
%if %{?debug_build}
MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-O2//')
%endif
@@ -814,6 +816,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Sat May 9 2015 Moez Roy <moez.roy@gmail.com> - 38.0.1-2
+- Rebuilt with hardening flags so it passes the checksec test;
+
+- See also https://fedoraproject.org/wiki/Changes/Harden_All_Packages
* Mon May 18 2015 Martin Stransky <stransky@redhat.com> - 38.0.1-1
- Update to 38.0.1
bgstack15