# HG changeset patch # User erikj # Date 1369135108 -7200 # Node ID 8b5c1e11c27b165054fc38e48037dfc257ced337 # Parent f09ab0c416185e3cba371e81bcb6a16060c90f44 8014508: Fix log levels in make Reviewed-by: tbell diff -r f09ab0c41618 -r 8b5c1e11c27b NewMakefile.gmk --- a/NewMakefile.gmk Wed Jul 05 18:55:08 2017 +0200 +++ b/NewMakefile.gmk Tue May 21 13:18:28 2013 +0200 @@ -73,7 +73,7 @@ grep ^.PHONY: | head -n 1 | cut -d " " -f 2-))) $(all_phony_targets): - @$(foreach spec,$(SPEC),($(MAKE) -f NewMakefile.gmk SPEC=$(spec) $(VERBOSE) VERBOSE=$(VERBOSE) $@) &&) true + @$(foreach spec,$(SPEC),($(MAKE) -f NewMakefile.gmk SPEC=$(spec) $(VERBOSE) VERBOSE=$(VERBOSE) LOG_LEVEL=$(LOG_LEVEL) $@) &&) true endif endif diff -r f09ab0c41618 -r 8b5c1e11c27b common/autoconf/spec.gmk.in --- a/common/autoconf/spec.gmk.in Wed Jul 05 18:55:08 2017 +0200 +++ b/common/autoconf/spec.gmk.in Tue May 21 13:18:28 2013 +0200 @@ -54,9 +54,9 @@ MAKE:=@MAKE@ -# Pass along the verbosity setting. +# Pass along the verbosity and log level settings. ifeq (,$(findstring VERBOSE=,$(MAKE))) - MAKE:=$(MAKE) $(VERBOSE) VERBOSE="$(VERBOSE)" + MAKE:=$(MAKE) $(VERBOSE) VERBOSE="$(VERBOSE)" LOG_LEVEL="$(LOG_LEVEL)" endif # No implicit variables or rules!