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.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/deb_patches/drop-check-glibc-symbols.patch b/deb_patches/drop-check-glibc-symbols.patch
deleted file mode 100644
index c21f0f3..0000000
--- a/deb_patches/drop-check-glibc-symbols.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-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
-@@ -293,9 +293,7 @@ def checks(target, binary):
- target = HOST
- checks = []
- if target['MOZ_LIBSTDCXX_VERSION']:
-- checks.append(check_stdcxx)
- checks.append(check_libgcc)
-- checks.append(check_glibc)
-
- # Disabled for local builds because of readelf performance: See bug 1472496
- if not buildconfig.substs.get('DEVELOPER_OPTIONS'):
bgstack15