From: Peter Korsgaard Date: Fri, 16 Jan 2009 12:30:07 +0000 (-0000) Subject: DOWNLOAD: don't use := assignment for function implementation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3e06e4cec64dd8fa896c8a989f7fffdb6fa91b82;p=buildroot.git DOWNLOAD: don't use := assignment for function implementation := causes the function parameters to get evaluated at definition time instead of implementation time, which is kind of silly for a function. Fixes make source-check / external-deps --- diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index bd8bed4bb7..6753f68b18 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -134,7 +134,7 @@ TERM_RESET := $(shell tput rmso) # support make source-check/external-deps ifneq ($(SPIDER),) -DOWNLOAD:=$(WGET) -P $(DL_DIR) $(1)/$(2) +DOWNLOAD=$(WGET) -P $(DL_DIR) $(1)/$(2) else define DOWNLOAD $(Q)test -e $(DL_DIR)/$(2) || \