From: Yann E. MORIN Date: Sun, 2 Mar 2014 17:51:34 +0000 (+0100) Subject: pkg-infra: DOWNLOAD is never called with two arguments X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=18edb40bf539bed08d0d2f84bc5c547e4a22e656;p=buildroot.git pkg-infra: DOWNLOAD is never called with two arguments Currently, the DOWNLOAD helper accepts one or two arguments: - the source URI - the source filename; if missing, it is derived from the URI But we have no caller of DOWNLOAD that passes a second argument. Signed-off-by: "Yann E. MORIN" Acked-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Thomas Petazzoni --- diff --git a/package/pkg-download.mk b/package/pkg-download.mk index 6d4cbcded4..85842de354 100644 --- a/package/pkg-download.mk +++ b/package/pkg-download.mk @@ -238,14 +238,13 @@ endef # 3) BR2_BACKUP_SITE if enabled, unless BR2_PRIMARY_SITE_ONLY is set # # Argument 1 is the source location -# Argument 2 is the source filename # # E.G. use like this: -# $(call DOWNLOAD,$(FOO_SITE),$(FOO_SOURCE)) +# $(call DOWNLOAD,$(FOO_SITE)) ################################################################################ define DOWNLOAD - $(call DOWNLOAD_INNER,$(1),$(if $(2),$(2),$(notdir $(1)))) + $(call DOWNLOAD_INNER,$(1),$(notdir $(1))) endef define DOWNLOAD_INNER