浏览代码

check-hash: silence hash ok messages when make -s is used

Similar to what we do for apply-patches.sh

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard 10 年之前
父节点
当前提交
b7c1c3ba6a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      package/pkg-download.mk

+ 1 - 1
package/pkg-download.mk

@@ -63,7 +63,7 @@ github = https://github.com/$(1)/$(2)/archive/$(3)
 # $(1): the path to the file with the hashes
 # $(2): the full path to the file to check
 define VERIFY_HASH
-	if ! support/download/check-hash $(1) $(2); then \
+	if ! support/download/check-hash $(1) $(2) $(if $(QUIET),>/dev/null); then \
 		rm -f $(2); \
 		exit 1; \
 	fi