aboutsummaryrefslogtreecommitdiff
path: root/deb_patches/drop-check-glibc-symbols.patch
diff options
context:
space:
mode:
Diffstat (limited to 'deb_patches/drop-check-glibc-symbols.patch')
-rw-r--r--deb_patches/drop-check-glibc-symbols.patch11
1 files changed, 3 insertions, 8 deletions
diff --git a/deb_patches/drop-check-glibc-symbols.patch b/deb_patches/drop-check-glibc-symbols.patch
index 98cbf92..c21f0f3 100644
--- a/deb_patches/drop-check-glibc-symbols.patch
+++ b/deb_patches/drop-check-glibc-symbols.patch
@@ -1,12 +1,8 @@
-Description: Drop the glibc and stdcxx checks.
- We're not compiling Firefox to run on a different version.
-Author: Chris Coulson <chris.coulson@canonical.com>
-Author: Olivier Tilloy <olivier.tilloy@canonical.com>
-Forwarded: not-needed
-
+diff --git a/python/mozbuild/mozbuild/action/check_binary.py b/python/mozbuild/mozbuild/action/check_binary.py
+index d85536f..1ce1305 100644
--- a/python/mozbuild/mozbuild/action/check_binary.py
+++ b/python/mozbuild/mozbuild/action/check_binary.py
-@@ -296,9 +296,7 @@ def checks(target, binary):
+@@ -293,9 +293,7 @@ def checks(target, binary):
target = HOST
checks = []
if target['MOZ_LIBSTDCXX_VERSION']:
@@ -16,4 +12,3 @@ Forwarded: not-needed
# Disabled for local builds because of readelf performance: See bug 1472496
if not buildconfig.substs.get('DEVELOPER_OPTIONS'):
-
bgstack15