From ea6a93f14087a72c84c480e67b54cda8b6766930 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Sun, 21 Nov 2021 08:42:04 -0700 Subject: Makefiles: Hide skipping submodule info unless V=1 Currently, git prints out the submodules that are being skipped twice on many builds. This patch hides that output unless the build is set to show it with `make V=1`. This is the normal way of showing the extra information during the build. Signed-off-by: Martin Roth Change-Id: I7b5c7f1f79dcc88793a9a21f2e92e7accc5de1e0 Reviewed-on: https://review.coreboot.org/c/coreboot/+/59511 Reviewed-by: Patrick Georgi Tested-by: build bot (Jenkins) --- Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 97ed805a67..c148c113f8 100644 --- a/Makefile +++ b/Makefile @@ -63,6 +63,7 @@ ifneq ($(V),1) ifneq ($(Q),) .SILENT: MAKEFLAGS += -s +quiet_errors := 2>/dev/null endif endif -- cgit v1.2.1