summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2019-12-09 10:33:12 +0100
committerMartin Stransky <stransky@redhat.com>2019-12-09 10:33:12 +0100
commita9d101a0aa37c3e23d3f775a5d70f631b31cb484 (patch)
tree770a6b3503ae08e04cabed37b25191de3bbf6ba2
parentmerged with master (diff)
downloadlibrewolf-fedora-ff-a9d101a0aa37c3e23d3f775a5d70f631b31cb484.tar.gz
librewolf-fedora-ff-a9d101a0aa37c3e23d3f775a5d70f631b31cb484.tar.bz2
librewolf-fedora-ff-a9d101a0aa37c3e23d3f775a5d70f631b31cb484.zip
remove -fno-lifetime-dse
-rw-r--r--firefox.spec2
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index c5f0188..ca9108f 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -503,7 +503,7 @@ cp %{SOURCE32} %{_buildrootdir}/bin || :
# Update the various config.guess to upstream release for aarch64 support
find ./ -name config.guess -exec cp /usr/lib/rpm/config.guess {} ';'
-MOZ_OPT_FLAGS=$(echo "%{optflags} -fno-lifetime-dse" | %{__sed} -e 's/-Wall//')
+MOZ_OPT_FLAGS=$(echo "%{optflags}" | %{__sed} -e 's/-Wall//')
#rhbz#1037063
# -Werror=format-security causes build failures when -Wno-format is explicitly given
# for some sources
bgstack15