summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-09-10 21:33:57 +0200
committerMartin Stransky <stransky@redhat.com>2020-09-10 21:33:57 +0200
commit009c3fc7a610c009d258bc7cd2e0f03f36ca6448 (patch)
treedb0392be1b974db7a132ccf86e5a77c3ffe80d10
parentremoved bogus build options (diff)
downloadlibrewolf-fedora-ff-009c3fc7a610c009d258bc7cd2e0f03f36ca6448.tar.gz
librewolf-fedora-ff-009c3fc7a610c009d258bc7cd2e0f03f36ca6448.tar.bz2
librewolf-fedora-ff-009c3fc7a610c009d258bc7cd2e0f03f36ca6448.zip
Test build for all arches
-rw-r--r--firefox.spec18
1 files changed, 9 insertions, 9 deletions
diff --git a/firefox.spec b/firefox.spec
index b7fd140..dfe81b6 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -5,11 +5,11 @@
%global build_with_asan 0
# Temporary disabled, filed as rhbz#1862012
-ExcludeArch: ppc64le
+# ExcludeArch: ppc64le
# Disabled due to https://pagure.io/fedora-infrastructure/issue/7581
-ExcludeArch: s390x
+# ExcludeArch: s390x
# Temporary disabled, filed as rhbz#1872111
-ExcludeArch: aarch64
+# ExcludeArch: aarch64
%global enable_mozilla_crashreporter 0
%ifarch x86_64 %{ix86}
@@ -44,9 +44,6 @@ ExcludeArch: aarch64
# Build PGO builds on Wayland backend
%global pgo_wayland 0
%endif
-%if 0%{?fedora} >= 33
-%global build_with_pgo 0
-%endif
%if 0%{?fedora} > 30
%global wayland_backend_default 1
%endif
@@ -117,7 +114,7 @@ ExcludeArch: aarch64
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 80.0.1
-Release: 2%{?dist}
+Release: 3%{?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
@@ -610,8 +607,8 @@ echo "export RANLIB=\"gcc-ranlib\"" >> .mozconfig
%endif
%if 0%{?build_with_pgo}
echo "ac_add_options MOZ_PGO=1" >> .mozconfig
-#echo "ac_add_options --enable-lto" >> .mozconfig
-# PGO build does not work with ccache
+echo "ac_add_options --enable-lto" >> .mozconfig
+# PGO build doesn't work with ccache
export CCACHE_DISABLE=1
%endif
@@ -966,6 +963,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Thu Sep 10 2020 Martin Stransky <stransky@redhat.com> - 80.0.1-3
+- Test build for all arches.
+
* Fri Sep 4 2020 Martin Stransky <stransky@redhat.com> - 80.0.1-2
- Added patch for mozbz#1875469
bgstack15