From: Philip Prindeville Date: Tue, 19 Sep 2017 21:17:09 +0000 (-0600) Subject: build: remove @ as it's causing an error X-Git-Tag: v17.01.5~162 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=5beb0abc83ecc5d95365c357f6d9fc367d590130 build: remove @ as it's causing an error Since $(DownloadMethod/unknown) is being invoked in the expansion of $(call locked ...) anyway, you can't have an @ because the shell doesn't know what to do with it. Signed-off-by: Philip Prindeville (cherry picked from commit 76ba01a39216b8460846808b2fc10d5ee230a324) --- diff --git a/include/download.mk b/include/download.mk index 82a3dd2f98..0a25641738 100644 --- a/include/download.mk +++ b/include/download.mk @@ -103,7 +103,7 @@ hash_var = $(if $(filter-out x,$(1)),MD5SUM,HASH) endif define DownloadMethod/unknown - @echo "ERROR: No download method available"; false + echo "ERROR: No download method available"; false endef define DownloadMethod/default