Adding new top level Makefile invalidated the DEBUG variable check for "command line" origin.
Moving this check into Makefile.perf. Signed-off-by: Jiri Olsa <jo...@redhat.com> Cc: Corey Ashford <cjash...@linux.vnet.ibm.com> Cc: David Ahern <dsah...@gmail.com> Cc: Ingo Molnar <mi...@elte.hu> Cc: Namhyung Kim <namhy...@kernel.org> Cc: Paul Mackerras <pau...@samba.org> Cc: Peter Zijlstra <a.p.zijls...@chello.nl> Cc: Arnaldo Carvalho de Melo <a...@redhat.com> --- tools/perf/Makefile | 6 +++++- tools/perf/config/Makefile | 3 --- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/tools/perf/Makefile b/tools/perf/Makefile index 5aa3d04..db21dad 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile @@ -37,12 +37,16 @@ ifneq ($(O),) FULL_O := $(shell readlink -f $(O)) endif +ifeq ("$(origin DEBUG)", "command line") + D = $(DEBUG) +endif + define print_msg @printf ' BUILD: Doing '\''make \033[33m-j'$(JOBS)'\033[m'\'' parallel build\n' endef define make - @$(MAKE) -f Makefile.perf --no-print-directory -j$(JOBS) O=$(FULL_O) $@ + @$(MAKE) -f Makefile.perf --no-print-directory -j$(JOBS) O=$(FULL_O) PERF_DEBUG=$(D) $@ endef # diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile index 9680424..912026a 100644 --- a/tools/perf/config/Makefile +++ b/tools/perf/config/Makefile @@ -66,9 +66,6 @@ ifneq ($(WERROR),0) CFLAGS += -Werror endif -ifeq ("$(origin DEBUG)", "command line") - PERF_DEBUG = $(DEBUG) -endif ifndef PERF_DEBUG CFLAGS += -O6 endif -- 1.7.11.7 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/