From 50c2a91b67c2ce37cb47de2bd30dfc721769aaae Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Wed, 18 Sep 2013 12:01:27 +0900 Subject: Makefile: Do not show make debug messages In commit 27af930, the top Makefile was adjusted to the new boards.cfg format. But at the same time, -d option was added. If you configure and make separately, for example like follows: make omap4_panda_config make CROSS_COMPILE= it works fine as it did before. But if you do them in one time like follows: make omap4_panda CROSS_COMPILE= The log is sprinkled with annoying make debug messages. This commit deletes -d option again. Signed-off-by: Masahiro Yamada Tested-by: Nishanth Menon --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1c9dc7a7a0..07abef4423 100644 --- a/Makefile +++ b/Makefile @@ -838,7 +838,7 @@ unconfig: sinclude $(obj).boards.depend $(obj).boards.depend: boards.cfg - @awk '(NF && $$1 !~ /^#/) { print $$7 ": " $$7 "_config; $$(MAKE) -d" }' $< > $@ + @awk '(NF && $$1 !~ /^#/) { print $$7 ": " $$7 "_config; $$(MAKE)" }' $< > $@ # # Functions to generate common board directory names -- cgit v1.2.1