mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
Bug 1859011 - avoid prefixing BUILDSTATUS lines, r=glandium.
Differential Revision: https://phabricator.services.mozilla.com/D208580
This commit is contained in:
parent
68fe1cfd41
commit
b3b4d143a6
@ -29,9 +29,7 @@ MOZ_AUTOMATION_CHECK := 0
|
||||
endif
|
||||
|
||||
ifneq (,$(filter automation/%,$(MAKECMDGOALS)))
|
||||
ifeq (4.0,$(firstword $(sort 4.0 $(MAKE_VERSION))))
|
||||
MAKEFLAGS += --output-sync=target
|
||||
else
|
||||
ifneq (4.0,$(firstword $(sort 4.0 $(MAKE_VERSION))))
|
||||
.NOTPARALLEL:
|
||||
endif
|
||||
endif
|
||||
|
@ -31,6 +31,9 @@ while True:
|
||||
if data == b"":
|
||||
break
|
||||
|
||||
sys.stdout.write(b"%s> %s" % (prefix, data))
|
||||
if data.startswith(b"BUILDSTATUS"):
|
||||
sys.stdout.write(data)
|
||||
else:
|
||||
sys.stdout.write(b"%s> %s" % (prefix, data))
|
||||
|
||||
sys.exit(p.wait())
|
||||
|
Loading…
Reference in New Issue
Block a user