diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-10-01 21:24:42 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-10-01 21:24:42 +0200 |
commit | 3fdf0bffb87c81f6abf70e64e5b9239431d79ee2 (patch) | |
tree | 21f1a9788f1792f7e784186885471d8997abcff3 /package/diffutils/diffutils.mk | |
parent | d65976fe26cbf2ef69d5a3bf324349475b5b1b68 (diff) |
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 'package/diffutils/diffutils.mk')
-rw-r--r-- | package/diffutils/diffutils.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/diffutils/diffutils.mk b/package/diffutils/diffutils.mk index 5d122b884..773913bf3 100644 --- a/package/diffutils/diffutils.mk +++ b/package/diffutils/diffutils.mk @@ -78,7 +78,7 @@ $(DIFFUTILS_DIR)/.configured: $(DIFFUTILS_DIR)/.unpacked ac_cv_func_working_mktime=yes \ jm_cv_func_working_re_compile_pattern=yes \ ac_use_included_regex=no \ - ./configure \ + ./configure $(QUIET) \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ |