summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKalev Lember <klember@redhat.com>2020-09-22 16:47:07 +0200
committerKalev Lember <klember@redhat.com>2020-09-22 16:47:07 +0200
commitbcd30e838ba1620a5413970cac2334454cb2d643 (patch)
treef4f31f565668e2f2ee327b1d29e6bbe68c3a9243
parentUpdated to 81 Build 2 (diff)
downloadlibrewolf-fedora-ff-bcd30e838ba1620a5413970cac2334454cb2d643.tar.gz
librewolf-fedora-ff-bcd30e838ba1620a5413970cac2334454cb2d643.tar.bz2
librewolf-fedora-ff-bcd30e838ba1620a5413970cac2334454cb2d643.zip
Disable LTO to work around firefox build failing in F33+
-rw-r--r--firefox.spec8
1 files changed, 7 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index 947f497..e9efc16 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -120,7 +120,7 @@ ExcludeArch: armv7hl
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 81.0
-Release: 3%{?dist}
+Release: 4%{?dist}
URL: https://www.mozilla.org/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Source0: https://archive.mozilla.org/pub/firefox/releases/%{version}%{?pre_version}/source/firefox-%{version}%{?pre_version}.source.tar.xz
@@ -508,6 +508,9 @@ chmod a-x third_party/rust/ash/src/extensions/khr/*.rs
#---------------------------------------------------------------------
%build
+# Disable LTO to work around firefox build failing in F33+
+%define _lto_cflags %{nil}
+
%if 0%{?use_bundled_cbindgen}
mkdir -p my_rust_vendor
@@ -975,6 +978,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Tue Sep 22 2020 Kalev Lember <klember@redhat.com> - 81.0-4
+- Disable LTO to work around firefox build failing in F33+
+
* Mon Sep 21 2020 Martin Stransky <stransky@redhat.com> - 81.0-3
- Updated to 81.0 Build 2
- Updated firefox-disable-ffvpx-with-vapi patch
bgstack15