From: Thomas Petazzoni Date: Thu, 23 Dec 2010 10:42:49 +0000 (+0100) Subject: toolchain: fix again stamp file touch X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c8530262260fee4b475ccca1ae04eb28433fc4eb;p=buildroot.git toolchain: fix again stamp file touch In e6633fd2e37d25f32958f30e852baa216ce1384a I did crap, and added a quietization inside a shell command, which was already quietized. This was stupid, and is fixed by this patch. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/toolchain/toolchain-external/ext-tool.mk b/toolchain/toolchain-external/ext-tool.mk index ab8bc947a7..f6249ef9c9 100644 --- a/toolchain/toolchain-external/ext-tool.mk +++ b/toolchain/toolchain-external/ext-tool.mk @@ -195,4 +195,4 @@ $(STAMP_DIR)/ext-toolchain-installed: $(TOOLCHAIN_EXTERNAL_DEPENDENCIES) if [ -L $${ARCH_SYSROOT_DIR}/lib64 ] ; then \ $(call create_lib64_symlinks) ; \ fi ; \ - $(Q)touch $@ + touch $@