diff mbox series

[U-Boot,2/2] Makefile: Suppress output of python libfdt build command

Message ID 1504438669-20562-2-git-send-email-bmeng.cn@gmail.com
State Accepted
Commit 6935aec0e3f0064698d8970a00b908f5a162b93f
Delegated to: Tom Rini
Headers show
Series [U-Boot,1/2] Makefile: Quiesce libfdt build | expand

Commit Message

Bin Meng Sept. 3, 2017, 11:37 a.m. UTC
This should not be printed by default. Prefix it with $(Q).

Fixes ee95d10b: ("fdt: Build the new python libfdt module")
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

---

 tools/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Tom Rini Sept. 4, 2017, 12:42 a.m. UTC | #1
On Sun, Sep 03, 2017 at 04:37:49AM -0700, Bin Meng wrote:

> This should not be printed by default. Prefix it with $(Q).
> 
> Fixes ee95d10b: ("fdt: Build the new python libfdt module")
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/tools/Makefile b/tools/Makefile
index 5605fa7..a0db19d 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -131,8 +131,8 @@  fit_check_sign-objs   := $(dumpimage-mkimage-objs) fit_check_sign.o
 # all three files in $(obj)/tools: _libfdt.so, libfdt.py and libfdt_wrap.c
 # The latter is a temporary file which we could actually remove.
 tools/_libfdt.so: $(LIBFDT_SRCS) $(LIBFDT_SWIG)
-	cp $(LIBFDT_SWIG) tools/.
-	unset CC; \
+	$(Q)cp $(LIBFDT_SWIG) tools/.
+	$(Q)unset CC; \
 	unset CROSS_COMPILE; \
 	LDFLAGS="$(HOSTLDFLAGS)" CFLAGS= VERSION="u-boot-$(UBOOTVERSION)" \
 		CPPFLAGS="$(_hostc_flags)" OBJDIR=tools \