summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2020-07-10 18:18:29 +0200
committerJan Horak <jhorak@redhat.com>2020-07-10 18:18:29 +0200
commit87c38ce2a7c0780a9a3b1dd31ca8729363d3a19e (patch)
tree224a41399e463f2a62a0af920be7e77c51f1ddcd /firefox.spec
parentUpdate to 78.0.2 build2 (diff)
downloadlibrewolf-fedora-ff-87c38ce2a7c0780a9a3b1dd31ca8729363d3a19e.tar.gz
librewolf-fedora-ff-87c38ce2a7c0780a9a3b1dd31ca8729363d3a19e.tar.bz2
librewolf-fedora-ff-87c38ce2a7c0780a9a3b1dd31ca8729363d3a19e.zip
Fixing enable-linker=ldd for clang builds
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec7
1 files changed, 5 insertions, 2 deletions
diff --git a/firefox.spec b/firefox.spec
index 1964449..3200ed7 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -118,7 +118,7 @@ ExcludeArch: s390x
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 78.0.2
-Release: 1%{?dist}
+Release: 2%{?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
@@ -609,7 +609,7 @@ echo "export LLVM_PROFDATA=\"llvm-profdata\"" >> .mozconfig
echo "export AR=\"llvm-ar\"" >> .mozconfig
echo "export NM=\"llvm-nm\"" >> .mozconfig
echo "export RANLIB=\"llvm-ranlib\"" >> .mozconfig
-echo "export --enable-linker=lld" >> .mozconfig
+echo "ac_add_options --enable-linker=lld" >> .mozconfig
%else
echo "export CC=gcc" >> .mozconfig
echo "export CXX=g++" >> .mozconfig
@@ -971,6 +971,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Fri Jul 10 2020 Jan Horak <jhorak@redhat.com> - 78.0.2-2
+- Fixing clang build - linker setup
+
* Thu Jul 09 2020 Jan Horak <jhorak@redhat.com> - 78.0.2-1
- Update to 78.0.2 build2
bgstack15