diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-03-23 22:26:33 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-03-24 13:42:01 +0100 |
commit | 69c50c5945c08d7777cc2a36b6acf9c0cc4d8be2 (patch) | |
tree | 7080aab5cc9a8c30f18278ecece0fe9502363775 /toolchain | |
parent | f05104dc62d940b15c6c998840a44d46b3371274 (diff) | |
download | buildroot-novena-69c50c5945c08d7777cc2a36b6acf9c0cc4d8be2.tar.gz buildroot-novena-69c50c5945c08d7777cc2a36b6acf9c0cc4d8be2.zip |
uClibc: add missing $(Q)
Add a missing $(Q) in front of a MESSAGE call, which leads to the
message being displayed but also the command that shows the message.
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/uClibc/uclibc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/uClibc/uclibc.mk b/toolchain/uClibc/uclibc.mk index 1b49a8d3a..e8b2bb494 100644 --- a/toolchain/uClibc/uclibc.mk +++ b/toolchain/uClibc/uclibc.mk @@ -62,7 +62,7 @@ UCLIBC_LOCALES = $(foreach locale,$(GENERATE_LOCALE),\ endif $(DL_DIR)/$(UCLIBC_SOURCE): - $(call MESSAGE,"Downloading uClibc") + $(Q)$(call MESSAGE,"Downloading uClibc") $(call DOWNLOAD,$(UCLIBC_SITE)/$(UCLIBC_SOURCE)) uclibc-unpacked: $(UCLIBC_DIR)/.unpacked |