From a5ad8606cf0b93a35c92f3416a026877965d61d4 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Thu, 20 Mar 2014 10:55:50 -0400 Subject: [PATCH] Bug 985979 - disable the crashreporter when running |mach debug|; r=gps --- python/mozbuild/mozbuild/mach_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mozbuild/mozbuild/mach_commands.py b/python/mozbuild/mozbuild/mach_commands.py index 1f20fce0a8c..c97fdc7af2c 100644 --- a/python/mozbuild/mozbuild/mach_commands.py +++ b/python/mozbuild/mozbuild/mach_commands.py @@ -813,7 +813,7 @@ class DebugProgram(MachCommandBase): print(e) return 1 args = [debugger] - extra_env = {} + extra_env = { 'MOZ_CRASHREPORTER_DISABLE' : '1' } if debugparams: import pymake.process argv, badchar = pymake.process.clinetoargv(debugparams, os.getcwd())