summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-08-24 11:03:04 +0200
committerMartin Stransky <stransky@redhat.com>2020-08-24 11:03:04 +0200
commit706efcc2e9da11fc457669a5c939dade1b09f5d9 (patch)
tree25cc92fe52f9413b940e9283c189b6cf0bcfe4ca
parentspec cleanup (diff)
downloadlibrewolf-fedora-ff-706efcc2e9da11fc457669a5c939dade1b09f5d9.tar.gz
librewolf-fedora-ff-706efcc2e9da11fc457669a5c939dade1b09f5d9.tar.bz2
librewolf-fedora-ff-706efcc2e9da11fc457669a5c939dade1b09f5d9.zip
Disabled PGO on aarch64 builds due to linking errors
-rw-r--r--firefox.spec2
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index aa2e672..c9443bc 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -35,7 +35,7 @@ ExcludeArch: s390x
# Build PGO+LTO on x86_64 and aarch64 only due to build issues
# on other arches.
%global build_with_pgo 0
-%ifarch x86_64 aarch64
+%ifarch x86_64
%if %{release_build}
%global build_with_pgo 1
%endif
bgstack15