diff options
author | Bin Meng | 2017-09-03 04:37:49 -0700 |
---|---|---|
committer | Tom Rini | 2017-09-03 15:30:37 -0400 |
commit | 6935aec0e3f0064698d8970a00b908f5a162b93f (patch) | |
tree | aaad1f1670e6fc0d1a593f3f59f76ff22eb5a83b | |
parent | a5ab5c771b403e31d25e4e076ee777f6b79d1c3f (diff) |
Makefile: Suppress output of python libfdt build command
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>
-rw-r--r-- | tools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile index 5605fa7c8d3..a0db19d6b05 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 \ |