summaryrefslogtreecommitdiffstats
path: root/toolchain/ccache
diff options
context:
space:
mode:
authorPeter Korsgaard2009-10-01 21:24:42 +0200
committerPeter Korsgaard2009-10-01 21:24:42 +0200
commit3fdf0bffb87c81f6abf70e64e5b9239431d79ee2 (patch)
tree21f1a9788f1792f7e784186885471d8997abcff3 /toolchain/ccache
parentbuildroot: reinstate /etc/{hostname,issue} kconfig when using generic target (diff)
downloadbuildroot-3fdf0bffb87c81f6abf70e64e5b9239431d79ee2.tar.gz
buildroot-3fdf0bffb87c81f6abf70e64e5b9239431d79ee2.tar.xz
buildroot-3fdf0bffb87c81f6abf70e64e5b9239431d79ee2.zip
buildroot: silence ./configure step when building with 'make -s'
We have been passing -q to ./configure when using 'make -s' for packages using Makefile.autotools.in for some time. Do the same for packages using autotools, but not using the Makefile.autotools.in infrastructure, taking care to not do it for packages with hand written configure scripts. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/ccache')
-rw-r--r--toolchain/ccache/ccache.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/ccache/ccache.mk b/toolchain/ccache/ccache.mk
index 43ed2a773..c98937d37 100644
--- a/toolchain/ccache/ccache.mk
+++ b/toolchain/ccache/ccache.mk
@@ -36,7 +36,7 @@ $(CCACHE_DIR1)/.configured: $(CCACHE_DIR1)/.patched
mkdir -p $(CCACHE_DIR1)
(cd $(CCACHE_DIR1); rm -rf config.cache; \
CC="$(HOSTCC)" \
- $(CCACHE_DIR1)/configure \
+ $(CCACHE_DIR1)/configure $(QUIET) \
--target=$(GNU_HOST_NAME) \
--host=$(GNU_HOST_NAME) \
--build=$(GNU_HOST_NAME) \
@@ -147,7 +147,7 @@ $(CCACHE_DIR2)/.configured: $(CCACHE_DIR2)/.patched
mkdir -p $(CCACHE_DIR2)
(cd $(CCACHE_DIR2); rm -rf config.cache; \
$(TARGET_CONFIGURE_OPTS) \
- $(CCACHE_DIR2)/configure \
+ $(CCACHE_DIR2)/configure $(QUIET) \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \