diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-12-23 11:42:49 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-12-23 11:47:39 +0100 |
commit | c8530262260fee4b475ccca1ae04eb28433fc4eb (patch) | |
tree | 665874f08947e36b41f236394bffb919e314a26a /toolchain | |
parent | e6633fd2e37d25f32958f30e852baa216ce1384a (diff) | |
download | buildroot-novena-c8530262260fee4b475ccca1ae04eb28433fc4eb.tar.gz buildroot-novena-c8530262260fee4b475ccca1ae04eb28433fc4eb.zip |
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 <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/toolchain-external/ext-tool.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/toolchain-external/ext-tool.mk b/toolchain/toolchain-external/ext-tool.mk index ab8bc947a..f6249ef9c 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 $@ |