From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nishanth Menon Date: Thu, 19 Sep 2013 08:41:48 -0500 Subject: [U-Boot] [PATCH] Makefile: Do not show make debug messages In-Reply-To: <523AF551.4010108@ti.com> References: <1379473287-31492-1-git-send-email-yamada.m@jp.panasonic.com> <523AF551.4010108@ti.com> Message-ID: <523AFF1C.5000601@ti.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 09/19/2013 08:00 AM, Nishanth Menon wrote: > On 09/17/2013 10:01 PM, Masahiro Yamada wrote: >> 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 >> --- >> Makefile | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/Makefile b/Makefile >> index 28ddb7e..bc639b3 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 >> > > Thanks - this helped me. > > Before log: http://pastebin.com/92HdiQdP > After log: http://pastebin.com/7UnYdajd > > Tested-by: Nishanth Menon > just a side note: if one has already tried building, git clean -fdx helps remove the mess.. -- Regards, Nishanth Menon