|
@@ -81,7 +81,12 @@ ifeq ($(DL_MODE),DOWNLOAD)
|
|
done
|
|
done
|
|
endif
|
|
endif
|
|
$(if $($(PKG)_SOURCE),$(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE)))
|
|
$(if $($(PKG)_SOURCE),$(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE)))
|
|
- $(foreach p,$($(PKG)_EXTRA_DOWNLOADS),$(call DOWNLOAD,$($(PKG)_SITE:/=)/$(p))$(sep))
|
|
|
|
|
|
+ $(foreach p,$($(PKG)_EXTRA_DOWNLOADS),\
|
|
|
|
+ $(if $(findstring ://,$(p)),\
|
|
|
|
+ $(call DOWNLOAD,$(p)),\
|
|
|
|
+ $(call DOWNLOAD,$($(PKG)_SITE:/=)/$(p))\
|
|
|
|
+ )\
|
|
|
|
+ $(sep))
|
|
$(foreach p,$($(PKG)_PATCH),\
|
|
$(foreach p,$($(PKG)_PATCH),\
|
|
$(if $(findstring ://,$(p)),\
|
|
$(if $(findstring ://,$(p)),\
|
|
$(call DOWNLOAD,$(p)),\
|
|
$(call DOWNLOAD,$(p)),\
|