external toolchain: respect $(Q)

Use $(Q) in external toolchain support so that the user can get the
full output by passing V=1 to make, and still get a nice and clean
output by default.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2009-07-17 08:48:35 +02:00
parent 28aa0b47fb
commit 82bf777ed7
1 changed files with 5 additions and 5 deletions

View File

@ -203,18 +203,18 @@ ifeq ($(strip $(SYSROOT_DIR)),)
exit 1 exit 1
endif endif
ifeq ($(BR2_arm),y) ifeq ($(BR2_arm),y)
@$(call check_arm_abi) $(Q)$(call check_arm_abi)
endif endif
ifeq ($(BR2_TOOLCHAIN_EXTERNAL_UCLIBC),y) ifeq ($(BR2_TOOLCHAIN_EXTERNAL_UCLIBC),y)
@$(call check_uclibc,$(SYSROOT_DIR)) $(Q)$(call check_uclibc,$(SYSROOT_DIR))
else else
@$(call check_glibc,$(SYSROOT_DIR)) $(Q)$(call check_glibc,$(SYSROOT_DIR))
endif endif
mkdir -p $(TARGET_DIR)/lib mkdir -p $(TARGET_DIR)/lib
@echo "Copy external toolchain libraries to target..." @echo "Copy external toolchain libraries to target..."
@for libs in $(EXTERNAL_LIBS); do \ $(Q)for libs in $(EXTERNAL_LIBS); do \
$(call copy_toolchain_lib_root,$(SYSROOT_DIR),$$libs,/lib,$(BR2_TOOLCHAIN_EXTERNAL_STRIP)); \ $(call copy_toolchain_lib_root,$(SYSROOT_DIR),$$libs,/lib,$(BR2_TOOLCHAIN_EXTERNAL_STRIP)); \
done done
@echo "Copy external toolchain sysroot to staging..." @echo "Copy external toolchain sysroot to staging..."
@$(call copy_toolchain_sysroot,$(SYSROOT_DIR)) $(Q)$(call copy_toolchain_sysroot,$(SYSROOT_DIR))
@touch $@ @touch $@