summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-08-23 12:03:44 +0200
committerMartin Stransky <stransky@redhat.com>2021-08-23 12:03:44 +0200
commitc4b86655eb98fcfa274c24c4a0b4514b742d6bbc (patch)
tree116c68a59ec41c652a5fd4fec1c4234717f22ce7
parentMerge branch 'rawhide' of ssh://pkgs.fedoraproject.org/rpms/firefox into rawhide (diff)
downloadlibrewolf-fedora-ff-c4b86655eb98fcfa274c24c4a0b4514b742d6bbc.tar.gz
librewolf-fedora-ff-c4b86655eb98fcfa274c24c4a0b4514b742d6bbc.tar.bz2
librewolf-fedora-ff-c4b86655eb98fcfa274c24c4a0b4514b742d6bbc.zip
Set %%build_with_clang automatically based on %%toolchain
-rw-r--r--firefox.spec12
1 files changed, 10 insertions, 2 deletions
diff --git a/firefox.spec b/firefox.spec
index a01d734..ad86aa3 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -18,10 +18,15 @@
%global debug_build 0
%global system_nss 1
-%global build_with_clang 0
%global build_with_asan 0
%global test_on_wayland 1
+%if "%{toolchain}" == "clang"
+%global build_with_clang 1
+%else
+%global build_with_clang 0
+%endif
+
# There are still build problems on s390x, see
# https://koji.fedoraproject.org/koji/taskinfo?taskID=55048351
# https://bugzilla.redhat.com/show_bug.cgi?id=1897522
@@ -152,7 +157,7 @@ ExcludeArch: armv7hl
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 91.0.1
-Release: 1%{?pre_tag}%{?dist}
+Release: 2%{?pre_tag}%{?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
@@ -1039,6 +1044,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Mon Aug 23 2021 Timm Bäder <tbaeder@redhat.com> - 91.0.1-2
+- Set %%build_with_clang automatically based on %%toolchain
+
* Mon Aug 23 2021 Martin Stransky <stransky@redhat.com> - 91.0.1-1
- Updated to 91.0.1
bgstack15