diff options
| author | Peter Korsgaard | 2009-01-16 13:30:07 +0100 |
|---|---|---|
| committer | Peter Korsgaard | 2009-01-16 13:30:07 +0100 |
| commit | 3e06e4cec64dd8fa896c8a989f7fffdb6fa91b82 (patch) | |
| tree | d566c094ee311ef624e7dad2bbc46ae996687c76 /package | |
| parent | buildroot: convert remaining WGET users to DOWNLOAD helper (diff) | |
| download | buildroot-3e06e4cec64dd8fa896c8a989f7fffdb6fa91b82.tar.gz buildroot-3e06e4cec64dd8fa896c8a989f7fffdb6fa91b82.tar.xz buildroot-3e06e4cec64dd8fa896c8a989f7fffdb6fa91b82.zip | |
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
Diffstat (limited to 'package')
| -rw-r--r-- | package/Makefile.autotools.in | 2 |
1 files changed, 1 insertions, 1 deletions
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) || \ |
