]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
Makefile: really suppress printing of directories
authorDavid Ahern <dsa@cumulusnetworks.com>
Wed, 7 Dec 2016 20:55:09 +0000 (12:55 -0800)
committerStephen Hemminger <stephen@networkplumber.org>
Fri, 9 Dec 2016 20:49:44 +0000 (12:49 -0800)
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 <dsa@cumulusnetworks.com>
Makefile

index 37b68ad87f0689861c7705353ee07ac8267f6716..18de7dcb315b163f9a27ccbe0741818a1d5e70a6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ ifneq ($(wildcard Config),)
 include Config
 endif
 
-ifndef VERBOSE
+ifeq ($(VERBOSE),0)
 MAKEFLAGS += --no-print-directory
 endif