From: David Ahern Date: Wed, 7 Dec 2016 20:55:09 +0000 (-0800) Subject: Makefile: really suppress printing of directories X-Git-Tag: v4.10.0~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eebc7cc1922bd955cdb284bc97004dd6a1f0028a;p=thirdparty%2Fiproute2.git Makefile: really suppress printing of directories Makefile adds --no-print-directory to MAKEFLAGS if VERBOSE is not defined however Config always defines VERBOSE. Update the check to whether VERBOSE is 0. Fixes: 57bdf8b76451 ("Make builds default to quiet mode") Signed-off-by: David Ahern --- diff --git a/Makefile b/Makefile index 37b68ad87..18de7dcb3 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ ifneq ($(wildcard Config),) include Config endif -ifndef VERBOSE +ifeq ($(VERBOSE),0) MAKEFLAGS += --no-print-directory endif