summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2020-02-16 11:47:52 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-03-04 15:55:26 +0000
commit7325ac57408edfa759bcb084744421fc4d9dfc92 (patch)
tree83e6076b81080d27e6417c71ac6a1057c879822d /Makefile
parent446e4dc238d13ecf22e4aa05d15bf5173f9f547c (diff)
downloadcoreboot-7325ac57408edfa759bcb084744421fc4d9dfc92.tar.gz
coreboot-7325ac57408edfa759bcb084744421fc4d9dfc92.tar.bz2
coreboot-7325ac57408edfa759bcb084744421fc4d9dfc92.zip
Makefile: Explicitly silence sub-makes
GNU Make 4.3 doesn't propagate a global .SILENT to sub-processes anymore. Let's make it explicit to maintain the behaviour we are used to. From the changelog: [SV 54740] Ensure .SILENT settings do not leak into sub-makes Change-Id: I3de51c245d3344b062dc0fe9c62b8d5c0ac5e67d Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38931 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 41a9b3afa428..3f60493314eb 100644
--- a/Makefile
+++ b/Makefile
@@ -82,6 +82,7 @@ Q:=@
ifneq ($(V),1)
ifneq ($(Q),)
.SILENT:
+MAKEFLAGS += -s
endif
endif