[source] build: remove duplicate Download/default definition from include/host-build.mk

LEDE Commits lede-commits at lists.infradead.org
Fri Dec 16 06:35:41 PST 2016


nbd pushed a commit to source.git, branch master:
https://git.lede-project.org/881c5b47ece3702ee9ea6fe450cded8635da5056

commit 881c5b47ece3702ee9ea6fe450cded8635da5056
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Fri Dec 16 15:26:22 2016 +0100

    build: remove duplicate Download/default definition from include/host-build.mk
    
    Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
 include/download.mk   | 13 +++++++++++++
 include/host-build.mk | 10 ----------
 include/package.mk    | 13 -------------
 3 files changed, 13 insertions(+), 23 deletions(-)

diff --git a/include/download.mk b/include/download.mk
index 0a12c69..ec55777 100644
--- a/include/download.mk
+++ b/include/download.mk
@@ -180,6 +180,19 @@ define Download/Defaults
   OPTS:=
 endef
 
+define Download/default
+  FILE:=$(PKG_SOURCE)
+  URL:=$(PKG_SOURCE_URL)
+  SUBDIR:=$(PKG_SOURCE_SUBDIR)
+  PROTO:=$(PKG_SOURCE_PROTO)
+  $(if $(PKG_SOURCE_MIRROR),MIRROR:=$(filter 1,$(PKG_MIRROR)))
+  $(if $(PKG_MIRROR_MD5SUM),MIRROR_MD5SUM:=$(PKG_MIRROR_MD5SUM))
+  $(if $(PKG_MIRROR_HASH),MIRROR_HASH:=$(PKG_MIRROR_HASH))
+  VERSION:=$(PKG_SOURCE_VERSION)
+  $(if $(PKG_MD5SUM),MD5SUM:=$(PKG_MD5SUM))
+  $(if $(PKG_HASH),HASH:=$(PKG_HASH))
+endef
+
 define Download
   $(eval $(Download/Defaults))
   $(eval $(Download/$(1)))
diff --git a/include/host-build.mk b/include/host-build.mk
index d353c88..1ba849f 100644
--- a/include/host-build.mk
+++ b/include/host-build.mk
@@ -123,16 +123,6 @@ ifneq ($(if $(HOST_QUILT),,$(CONFIG_AUTOREBUILD)),)
   endef
 endif
 
-define Download/default
-  FILE:=$(PKG_SOURCE)
-  URL:=$(PKG_SOURCE_URL)
-  PROTO:=$(PKG_SOURCE_PROTO)
-  SUBDIR:=$(PKG_SOURCE_SUBDIR)
-  VERSION:=$(PKG_SOURCE_VERSION)
-  MD5SUM:=$(PKG_MD5SUM)
-  MIRROR_MD5SUM:=$(PKG_MIRROR_MD5SUM)
-endef
-
 define Host/Exports/Default
   $(1) : export ACLOCAL_INCLUDE=$$(foreach p,$$(wildcard $$(STAGING_DIR_HOST)/share/aclocal $$(STAGING_DIR_HOST)/share/aclocal-* $(if $(IS_PACKAGE_BUILD),$$(STAGING_DIR)/host/share/aclocal $$(STAGING_DIR)/host/share/aclocal-*)),-I $$(p))
   $(1) : export STAGING_PREFIX=$$(HOST_BUILD_PREFIX)
diff --git a/include/package.mk b/include/package.mk
index bc621a1..87dc573 100644
--- a/include/package.mk
+++ b/include/package.mk
@@ -118,19 +118,6 @@ ifeq ($(DUMP)$(filter prereq clean refresh update,$(MAKECMDGOALS)),)
   endif
 endif
 
-define Download/default
-  FILE:=$(PKG_SOURCE)
-  URL:=$(PKG_SOURCE_URL)
-  SUBDIR:=$(PKG_SOURCE_SUBDIR)
-  PROTO:=$(PKG_SOURCE_PROTO)
-  $(if $(PKG_SOURCE_MIRROR),MIRROR:=$(filter 1,$(PKG_MIRROR)))
-  $(if $(PKG_MIRROR_MD5SUM),MIRROR_MD5SUM:=$(PKG_MIRROR_MD5SUM))
-  $(if $(PKG_MIRROR_HASH),MIRROR_HASH:=$(PKG_MIRROR_HASH))
-  VERSION:=$(PKG_SOURCE_VERSION)
-  $(if $(PKG_MD5SUM),MD5SUM:=$(PKG_MD5SUM))
-  $(if $(PKG_HASH),HASH:=$(PKG_HASH))
-endef
-
 ifdef USE_GIT_TREE
   define Build/Prepare/Default
 	mkdir -p $(PKG_BUILD_DIR)



More information about the lede-commits mailing list