Bug 1264703 - Follow up: don't print unhandled BUILDSTATUS messages when running |./mach configure| r=gps

DONTBUILD

MozReview-Commit-ID: BzUnpqreYSb
This commit is contained in:
Chris Manchester 2016-04-15 17:38:41 -07:00
Родитель 7bc7322566
Коммит 108befa0c5
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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!')