summaryrefslogtreecommitdiff
path: root/build-disable-elfhack.patch
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2018-09-27 14:37:10 +0200
committerJan Horak <jhorak@redhat.com>2018-09-27 14:37:10 +0200
commit13bd23eb722409af4227777cb74200e5eb3a973e (patch)
tree915abc91c58c1a2eb00cc2d38bb55874e4ed9d2f /build-disable-elfhack.patch
parentDisable elfhack for fedora 29+ because of build failures (diff)
downloadlibrewolf-fedora-ff-13bd23eb722409af4227777cb74200e5eb3a973e.tar.gz
librewolf-fedora-ff-13bd23eb722409af4227777cb74200e5eb3a973e.tar.bz2
librewolf-fedora-ff-13bd23eb722409af4227777cb74200e5eb3a973e.zip
Disable elfhack for fedora 29+ because of build failures
Diffstat (limited to 'build-disable-elfhack.patch')
-rw-r--r--build-disable-elfhack.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/build-disable-elfhack.patch b/build-disable-elfhack.patch
new file mode 100644
index 0000000..11e6a54
--- /dev/null
+++ b/build-disable-elfhack.patch
@@ -0,0 +1,12 @@
+diff -up firefox-62.0.2/toolkit/moz.configure.elfhack firefox-62.0.2/toolkit/moz.configure
+--- firefox-62.0.2/toolkit/moz.configure.elfhack 2018-09-27 14:32:56.549507561 +0200
++++ firefox-62.0.2/toolkit/moz.configure 2018-09-27 14:33:08.219532121 +0200
+@@ -1195,7 +1195,7 @@ with only_when(has_elfhack):
+ option('--disable-elf-hack', help='Disable elf hacks')
+
+ set_config('USE_ELF_HACK',
+- depends_if('--enable-elf-hack')(lambda _: True))
++ depends_if('--enable-elf-hack')(lambda _: False))
+
+
+ @depends(check_build_environment)
bgstack15