[U-Boot] [PATCH 1/2] Makefile: Quiesce libfdt build

Since commit 3809e302 "Makefile: honor PYTHON configuration properly", the build commands of libfdt are printed while previously were not.
This adds the missing '--quiet' back.
Signed-off-by: Bin Meng bmeng.cn@gmail.com ---
tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/Makefile b/tools/Makefile index 086c533..5605fa7 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -138,7 +138,7 @@ tools/_libfdt.so: $(LIBFDT_SRCS) $(LIBFDT_SWIG) CPPFLAGS="$(_hostc_flags)" OBJDIR=tools \ SOURCES="$(LIBFDT_SRCS) tools/libfdt.i" \ SWIG_OPTS="-I$(srctree)/lib/libfdt -I$(srctree)/lib" \ - $(PYTHON) $(libfdt_tree)/pylibfdt/setup.py build_ext \ + $(PYTHON) $(libfdt_tree)/pylibfdt/setup.py --quiet build_ext \ --build-lib tools
ifneq ($(CONFIG_MX23)$(CONFIG_MX28),)

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(-)
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 \

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!

On Sun, Sep 03, 2017 at 04:37:48AM -0700, Bin Meng wrote:
Since commit 3809e302 "Makefile: honor PYTHON configuration properly", the build commands of libfdt are printed while previously were not.
This adds the missing '--quiet' back.
Signed-off-by: Bin Meng bmeng.cn@gmail.com
Applied to u-boot/master, thanks!
participants (2)
-
Bin Meng
-
Tom Rini