diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-02-24 11:12:13 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-25 11:01:28 -0500 |
commit | 03c7b3fc0ba9636d3de8db0997f60e96c7494bfc (patch) | |
tree | 7a99800f7a38e032e826045e7effeacc21cfcbcc /spl | |
parent | 95ddcd68ab54862f416815b9f8c4f584cc0108e2 (diff) | |
download | u-boot-imx-03c7b3fc0ba9636d3de8db0997f60e96c7494bfc.zip u-boot-imx-03c7b3fc0ba9636d3de8db0997f60e96c7494bfc.tar.gz u-boot-imx-03c7b3fc0ba9636d3de8db0997f60e96c7494bfc.tar.bz2 |
kbuild: Add $(Q) when descending into subdirectories
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'spl')
-rw-r--r-- | spl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spl/Makefile b/spl/Makefile index b983039..df4ecfa 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -177,8 +177,8 @@ $(OBJTREE)/MLO.byteswap: $(obj)/u-boot-spl.bin $(OBJTREE)/tools/mkimage -T omapimage -n byteswap \ -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ -$(objtree)/SPL : $(obj)/u-boot-spl.bin - $(MAKE) $(build)=spl/arch/arm/imx-common $@ +$(objtree)/SPL: $(obj)/u-boot-spl.bin + $(Q)$(MAKE) $(build)=spl/arch/arm/imx-common $@ ALL-y += $(obj)/$(SPL_BIN).bin |