From 3fdf0bffb87c81f6abf70e64e5b9239431d79ee2 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Thu, 1 Oct 2009 21:24:42 +0200 Subject: 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 --- target/ext2/ext2root.mk | 2 +- target/x86/grub/grub.mk | 2 +- target/x86/grub2/grub2.mk | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'target') diff --git a/target/ext2/ext2root.mk b/target/ext2/ext2root.mk index 49b53f448..622b29329 100644 --- a/target/ext2/ext2root.mk +++ b/target/ext2/ext2root.mk @@ -19,7 +19,7 @@ $(GENEXT2_DIR)/.unpacked: $(DL_DIR)/$(GENEXT2_SOURCE) $(GENEXT2_DIR)/.configured: $(GENEXT2_DIR)/.unpacked chmod a+x $(GENEXT2_DIR)/configure (cd $(GENEXT2_DIR); rm -rf config.cache; \ - ./configure \ + ./configure $(QUIET) \ CC="$(HOSTCC)" \ --prefix=$(STAGING_DIR) \ ) diff --git a/target/x86/grub/grub.mk b/target/x86/grub/grub.mk index f280545ca..af46244f4 100644 --- a/target/x86/grub/grub.mk +++ b/target/x86/grub/grub.mk @@ -83,7 +83,7 @@ $(GRUB_DIR)/.configured: $(GRUB_DIR)/.unpacked $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ CPPFLAGS="$(GRUB_CFLAGS)" \ - ./configure \ + ./configure $(QUIET) \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ diff --git a/target/x86/grub2/grub2.mk b/target/x86/grub2/grub2.mk index cbf6df890..46c6471e5 100644 --- a/target/x86/grub2/grub2.mk +++ b/target/x86/grub2/grub2.mk @@ -84,7 +84,7 @@ $(GRUB2_DIR)/.configured: $(GRUB2_DIR)/.unpacked $(TARGET_CONFIGURE_ARGS) \ CPPFLAGS="$(GRUB2_CFLAGS)" \ grub_cv_i386_check_nested_functions=no \ - ./configure \ + ./configure $(QUIET) \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ -- cgit v1.2.3