From: Felix Fietkau Date: Wed, 6 Jun 2012 13:45:53 +0000 (+0000) Subject: download.mk: refuse to download mirror tarballs from packages using version control... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fwigyori.git;a=commitdiff_plain;h=e8ff034c8b2135a97f81c9ccc754b10cb66a2038;hp=23fc737b9da8fa75122e0442089e39c9d5389d81 download.mk: refuse to download mirror tarballs from packages using version control if no mirror md5sum was provided SVN-Revision: 32079 --- diff --git a/include/download.mk b/include/download.mk index 6cc10d95c3..823ddf93f8 100644 --- a/include/download.mk +++ b/include/download.mk @@ -45,7 +45,7 @@ define DownloadMethod/default endef define wrap_mirror - $(if $(MIRROR),@$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "$(MIRROR_MD5SUM)" || ( $(1) ),$(1)) + $(if $(if $(MIRROR),$(filter-out x,$(MIRROR_MD5SUM))),@$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "$(MIRROR_MD5SUM)" || ( $(1) ),$(1)) endef define DownloadMethod/cvs