From: Fabio Porcedda Date: Thu, 4 Jun 2015 04:10:09 +0000 (+0200) Subject: package/scons: reduce output when being silent X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=803596c37d3cb1b2d8a03a2e7afdac3700a41ff3;p=buildroot.git package/scons: reduce output when being silent Use the "-s" option to reduce scons output when it is a silent build. Signed-off-by: Fabio Porcedda Signed-off-by: Peter Korsgaard --- diff --git a/package/scons/scons.mk b/package/scons/scons.mk index e41853021f..39fb258d0d 100644 --- a/package/scons/scons.mk +++ b/package/scons/scons.mk @@ -18,4 +18,4 @@ HOST_SCONS_INSTALL_OPTS = \ $(eval $(host-python-package)) # variables used by other packages -SCONS = $(HOST_DIR)/usr/bin/python2 $(HOST_DIR)/usr/bin/scons +SCONS = $(HOST_DIR)/usr/bin/python2 $(HOST_DIR)/usr/bin/scons $(if $(QUIET),-s)