From 7ba2be6cda5f3d55aad18f0a5d585c0638e57c95 Mon Sep 17 00:00:00 2001 From: David Gibson Date: Fri, 10 Aug 2018 13:55:38 +1000 Subject: pylibfdt: Don't silence setup.py when V=1 At the moment we unconditionally pass --quiet to setup.py. Change that to get more debugging output from it when V=1 is passed to make. Signed-off-by: David Gibson Reviewed-by: Simon Glass --- pylibfdt/Makefile.pylibfdt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'pylibfdt') diff --git a/pylibfdt/Makefile.pylibfdt b/pylibfdt/Makefile.pylibfdt index bbd6518..005cb25 100644 --- a/pylibfdt/Makefile.pylibfdt +++ b/pylibfdt/Makefile.pylibfdt @@ -5,10 +5,15 @@ PYLIBFDT_srcs = $(PYLIBFDT_srcdir)/libfdt.i PYMODULE = $(PYLIBFDT_objdir)/_libfdt.so SETUP = $(PYLIBFDT_srcdir)/setup.py +SETUPFLAGS = + +ifndef V +SETUPFLAGS += --quiet +endif define run_setup VERSION="$(dtc_version)" - $(SETUP) --quiet $(1) + $(SETUP) $(SETUPFLAGS) $(1) endef $(PYMODULE): $(PYLIBFDT_srcs) $(LIBFDT_archive) $(SETUP) -- cgit v1.2.1