--- a/python/mozbuild/mozbuild/action/check_binary.py
+++ b/python/mozbuild/mozbuild/action/check_binary.py
@@ -308,18 +308,16 @@ def checks(target, binary):
checks.append(check_glibc)
# Disabled for local builds because of readelf performance: See bug 1472496
if not buildconfig.substs.get('DEVELOPER_OPTIONS'):
checks.append(check_textrel)
checks.append(check_pt_load)
checks.append(check_mozglue_order)
- checks.append(check_nsmodules)
-
retcode = 0
basename = os.path.basename(binary)
for c in checks:
try:
name = c.__name__
c(target, binary)
if buildconfig.substs.get('MOZ_AUTOMATION'):
print('TEST-PASS | {} | {}'.format(name, basename))