diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-03-17 02:37:10 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-03-17 02:37:10 +0000 |
commit | 510bdd3f0ee6b843120d68c68dfd648ec498a357 (patch) | |
tree | a062846ff79114348b890b34dcde435f6ce888b7 /include/download.mk | |
parent | 7ec4ad271e4d1cd75a454450ba5a085816955e3d (diff) | |
download | upstream-510bdd3f0ee6b843120d68c68dfd648ec498a357.tar.gz upstream-510bdd3f0ee6b843120d68c68dfd648ec498a357.tar.bz2 upstream-510bdd3f0ee6b843120d68c68dfd648ec498a357.zip |
fix download reverse depends
SVN-Revision: 14907
Diffstat (limited to 'include/download.mk')
-rw-r--r-- | include/download.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/download.mk b/include/download.mk index 811c42a3c3..78848b9c95 100644 --- a/include/download.mk +++ b/include/download.mk @@ -5,7 +5,7 @@ # See /LICENSE for more information. # -DOWNLOAD_RDEP:=$(STAMP_PREPARED) $(HOST_STAMP_PREPARED) +DOWNLOAD_RDEP=$(STAMP_PREPARED) $(HOST_STAMP_PREPARED) # Try to guess the download method from the URL define dl_method @@ -132,7 +132,9 @@ define Download endif ) - $(if $(DOWNLOAD_RDEP),$(DOWNLOAD_RDEP): $(DL_DIR)/$(FILE)) + $(foreach dep,$(DOWNLOAD_RDEP), + $(dep): $(DL_DIR)/$(FILE) + ) download: $(DL_DIR)/$(FILE) $(DL_DIR)/$(FILE): |