diff options
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/binutils/binutils.mk | 1 | ||||
-rw-r--r-- | toolchain/ccache/ccache.mk | 2 | ||||
-rw-r--r-- | toolchain/gcc/gcc-uclibc-3.x.mk | 1 | ||||
-rw-r--r-- | toolchain/gcc/gcc-uclibc-4.x.mk | 1 | ||||
-rw-r--r-- | toolchain/gdb/gdb.mk | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/toolchain/binutils/binutils.mk b/toolchain/binutils/binutils.mk index ab74e9f1f..46e733448 100644 --- a/toolchain/binutils/binutils.mk +++ b/toolchain/binutils/binutils.mk @@ -113,6 +113,7 @@ $(BINUTILS_DIR1)/.configured: $(BINUTILS_DIR)/.patched --disable-werror \ $(SOFT_FLOAT_CONFIG_OPTION) \ $(EXTRA_BINUTILS_CONFIG_OPTIONS) \ + $(QUIET) \ ) touch $@ diff --git a/toolchain/ccache/ccache.mk b/toolchain/ccache/ccache.mk index c405e88ac..8b19e68e9 100644 --- a/toolchain/ccache/ccache.mk +++ b/toolchain/ccache/ccache.mk @@ -40,6 +40,7 @@ $(CCACHE_DIR1)/.configured: $(CCACHE_DIR1)/.patched --host=$(GNU_HOST_NAME) \ --build=$(GNU_HOST_NAME) \ --prefix=/usr \ + $(QUIET) \ ) touch $@ @@ -152,6 +153,7 @@ $(CCACHE_DIR2)/.configured: $(CCACHE_DIR2)/.patched --prefix=/usr \ --sysconfdir=/etc \ $(DISABLE_NLS) \ + $(QUIET) \ ) touch $@ diff --git a/toolchain/gcc/gcc-uclibc-3.x.mk b/toolchain/gcc/gcc-uclibc-3.x.mk index 3a8d9d3bb..c585f5338 100644 --- a/toolchain/gcc/gcc-uclibc-3.x.mk +++ b/toolchain/gcc/gcc-uclibc-3.x.mk @@ -197,6 +197,7 @@ $(GCC_BUILD_DIR1)/.configured: $(GCC_DIR)/.patched $(SOFT_FLOAT_CONFIG_OPTION) \ $(GCC_WITH_ABI) $(GCC_WITH_ARCH) $(GCC_WITH_TUNE) \ $(EXTRA_GCC_CONFIG_OPTIONS) \ + $(QUIET) \ ) touch $@ diff --git a/toolchain/gcc/gcc-uclibc-4.x.mk b/toolchain/gcc/gcc-uclibc-4.x.mk index 08e5ed6c8..793e36840 100644 --- a/toolchain/gcc/gcc-uclibc-4.x.mk +++ b/toolchain/gcc/gcc-uclibc-4.x.mk @@ -220,6 +220,7 @@ $(GCC_BUILD_DIR1)/.configured: $(GCC_DIR)/.patched $(GCC_WITH_ABI) $(GCC_WITH_ARCH) $(GCC_WITH_TUNE) \ $(EXTRA_GCC_CONFIG_OPTIONS) \ $(EXTRA_GCC1_CONFIG_OPTIONS) \ + $(QUIET) \ ) touch $@ diff --git a/toolchain/gdb/gdb.mk b/toolchain/gdb/gdb.mk index aa46380f2..38ed145c2 100644 --- a/toolchain/gdb/gdb.mk +++ b/toolchain/gdb/gdb.mk @@ -104,6 +104,7 @@ $(GDB_TARGET_DIR)/.configured: $(GDB_DIR)/.unpacked --disable-sim --enable-gdbserver \ --without-included-gettext \ --disable-werror \ + $(QUIET) \ ) ifeq ($(BR2_ENABLE_LOCALE),y) -$(SED) "s,^INTL *=.*,INTL = -lintl,g;" $(GDB_DIR)/gdb/Makefile |