From: Jo-Philipp Wich Date: Mon, 1 Aug 2016 16:26:05 +0000 (+0200) Subject: imagebuilder: make submake invocations less verbose X-Git-Tag: v17.01.5~293 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=1d0f7e3136c7f72852fe91c1ec95863b1f4ace15 imagebuilder: make submake invocations less verbose Use silent make invocations for sub-makes like build_image or checksum to avoid bloating the IB output with non-status info. Signed-off-by: Jo-Philipp Wich (cherry picked from commit 0d1765b4ba2575ad7dbfbea5e5d04ba1224cdc0a) --- diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index af633b2163..baa0e1f271 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -123,9 +123,9 @@ _call_image: staging_dir/host/.prereq-build ifneq ($(USER_FILES),) $(MAKE) copy_files endif - $(MAKE) package_postinst - $(MAKE) build_image - $(MAKE) checksum + $(MAKE) -s package_postinst + $(MAKE) -s build_image + $(MAKE) -s checksum package_index: FORCE @echo @@ -194,7 +194,7 @@ ifneq ($(PROFILE),) endif endif (unset PROFILE FILES PACKAGES MAKEFLAGS; \ - $(MAKE) _call_image \ + $(MAKE) -s _call_image \ $(if $(PROFILE),USER_PROFILE="$(PROFILE_FILTER)") \ $(if $(FILES),USER_FILES="$(FILES)") \ $(if $(PACKAGES),USER_PACKAGES="$(PACKAGES)") \