Bug 524690 - Explicitly disable the crashreporter if we have a debugger. r=ted

This commit is contained in:
Blake Kaplan 2009-11-17 03:11:33 -08:00
parent 46fdc94d85
commit 525da59c55

View File

@ -447,6 +447,9 @@ def environment(env = None, xrePath = DIST_BIN, crashreporter = True):
if crashreporter:
env['MOZ_CRASHREPORTER_NO_REPORT'] = '1'
env['MOZ_CRASHREPORTER'] = '1'
else:
env['MOZ_CRASHREPORTER_DISABLE'] = '1'
env['GNOME_DISABLE_CRASH_DIALOG'] = "1"
return env