diff mbox series

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

Message ID 1504438669-20562-1-git-send-email-bmeng.cn@gmail.com
State Accepted
Commit a5ab5c771b403e31d25e4e076ee777f6b79d1c3f
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
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(-)

Comments

Tom Rini Sept. 4, 2017, 12:42 a.m. UTC | #1
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!
diff mbox series

Patch

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),)