From 3e06e4cec64dd8fa896c8a989f7fffdb6fa91b82 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Fri, 16 Jan 2009 12:30:07 +0000 Subject: 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 --- package/Makefile.autotools.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index bd8bed4bb..6753f68b1 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) || \ -- cgit v1.2.3