From 108befa0c5a24858ff70ab9ef991d083277cd290 Mon Sep 17 00:00:00 2001 From: Chris Manchester Date: Fri, 15 Apr 2016 17:38:41 -0700 Subject: [PATCH] Bug 1264703 - Follow up: don't print unhandled BUILDSTATUS messages when running |./mach configure| r=gps DONTBUILD MozReview-Commit-ID: BzUnpqreYSb --- python/mozbuild/mozbuild/mach_commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/mozbuild/mozbuild/mach_commands.py b/python/mozbuild/mozbuild/mach_commands.py index ac79563881d7..aeeb5aa42f43 100644 --- a/python/mozbuild/mozbuild/mach_commands.py +++ b/python/mozbuild/mozbuild/mach_commands.py @@ -562,7 +562,8 @@ class Build(MachCommandBase): status = self._run_make(srcdir=True, filename='client.mk', target='configure', line_handler=on_line, log=False, print_directory=False, allow_parallel=False, ensure_exit_code=False, - append_env={b'CONFIGURE_ARGS': options.encode('utf-8')}) + append_env={b'CONFIGURE_ARGS': options.encode('utf-8'), + b'NO_BUILDSTATUS_MESSAGES': b'1',}) if not status: print('Configure complete!')