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: 57bdf8b764 ("Make builds default to quiet mode")
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
This commit is contained in:
David Ahern 2016-12-07 12:55:09 -08:00 committed by Stephen Hemminger
parent eb3b5696f1
commit eebc7cc192

View File

@ -3,7 +3,7 @@ ifneq ($(wildcard Config),)
include Config
endif
ifndef VERBOSE
ifeq ($(VERBOSE),0)
MAKEFLAGS += --no-print-directory
endif