summaryrefslogtreecommitdiff
path: root/mozilla-1516803.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-12-10 20:02:09 +0100
committerMartin Stransky <stransky@redhat.com>2020-12-10 20:02:09 +0100
commitfeba2cc76d4b4cc1060fd30c9f39be6ba43c4007 (patch)
tree53b383aa8c1eb224010ddc0087d97a2ceea29b12 /mozilla-1516803.patch
parentDisable global lto (diff)
downloadlibrewolf-fedora-ff-feba2cc76d4b4cc1060fd30c9f39be6ba43c4007.tar.gz
librewolf-fedora-ff-feba2cc76d4b4cc1060fd30c9f39be6ba43c4007.tar.bz2
librewolf-fedora-ff-feba2cc76d4b4cc1060fd30c9f39be6ba43c4007.zip
Updated to Firefox 84
Diffstat (limited to 'mozilla-1516803.patch')
-rw-r--r--mozilla-1516803.patch17
1 files changed, 8 insertions, 9 deletions
diff --git a/mozilla-1516803.patch b/mozilla-1516803.patch
index f1f37f4..5053e51 100644
--- a/mozilla-1516803.patch
+++ b/mozilla-1516803.patch
@@ -1,16 +1,15 @@
-diff --git a/security/sandbox/linux/moz.build b/security/sandbox/linux/moz.build
---- a/security/sandbox/linux/moz.build
-+++ b/security/sandbox/linux/moz.build
-@@ -99,9 +99,8 @@
+diff -up firefox-84.0/security/sandbox/linux/moz.build.1516803 firefox-84.0/security/sandbox/linux/moz.build
+--- firefox-84.0/security/sandbox/linux/moz.build.1516803 2020-12-10 16:17:55.425139545 +0100
++++ firefox-84.0/security/sandbox/linux/moz.build 2020-12-10 16:29:21.945860841 +0100
+@@ -114,9 +114,8 @@ if CONFIG["CC_TYPE"] in ("clang", "gcc")
# gcc lto likes to put the top level asm in syscall.cc in a different partition
# from the function using it which breaks the build. Work around that by
# forcing there to be only one partition.
--for f in CONFIG['OS_CXXFLAGS']:
-- if f.startswith('-flto') and CONFIG['CC_TYPE'] != 'clang':
-- LDFLAGS += ['--param lto-partitions=1']
+-for f in CONFIG["OS_CXXFLAGS"]:
+- if f.startswith("-flto") and CONFIG["CC_TYPE"] != "clang":
+- LDFLAGS += ["--param lto-partitions=1"]
+if CONFIG['CC_TYPE'] != 'clang':
+ LDFLAGS += ['--param', 'lto-partitions=1']
- DEFINES['NS_NO_XPCOM'] = True
+ DEFINES["NS_NO_XPCOM"] = True
DisableStlWrapping()
-
bgstack15