summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Ahern <dsa@cumulusnetworks.com>2016-12-07 12:55:09 -0800
committerStephen Hemminger <stephen@networkplumber.org>2016-12-09 12:49:44 -0800
commiteebc7cc1922bd955cdb284bc97004dd6a1f0028a (patch)
treeb8318fb054bf9d0775952f0e46a632877be80f65 /Makefile
parenteb3b5696f16334b4513ad42882ca6bc35b78144d (diff)
downloadiproute2-eebc7cc1922bd955cdb284bc97004dd6a1f0028a.tar.gz
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 <dsa@cumulusnetworks.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 37b68ad8..18de7dcb 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