소스 검색

gcc: 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>
Thomas Petazzoni 12 년 전
부모
커밋
46f37dabc5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      toolchain/gcc/gcc-uclibc-4.x.mk

+ 1 - 1
toolchain/gcc/gcc-uclibc-4.x.mk

@@ -211,7 +211,7 @@ endif
 
 
 $(DL_DIR)/$(GCC_SOURCE):
 $(DL_DIR)/$(GCC_SOURCE):
 	mkdir -p $(DL_DIR)
 	mkdir -p $(DL_DIR)
-	$(call MESSAGE,"Downloading gcc")
+	$(Q)$(call MESSAGE,"Downloading gcc")
 	$(call DOWNLOAD,$(GCC_SITE)/$(GCC_SOURCE))
 	$(call DOWNLOAD,$(GCC_SITE)/$(GCC_SOURCE))
 
 
 gcc-unpacked: $(GCC_DIR)/.patched
 gcc-unpacked: $(GCC_DIR)/.patched