Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] pkg-download: make package name optional in github helper
@ 2017-10-04  8:57 Ismael Luceno
  2017-10-04 16:35 ` Arnout Vandecappelle
  2017-10-05 10:22 ` Thomas Petazzoni
  0 siblings, 2 replies; 8+ messages in thread
From: Ismael Luceno @ 2017-10-04  8:57 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
---
 package/pkg-download.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/pkg-download.mk b/package/pkg-download.mk
index dc4ff1c8c755..78307eee8a33 100644
--- a/package/pkg-download.mk
+++ b/package/pkg-download.mk
@@ -52,8 +52,8 @@ notdomain = $(patsubst $(call domain,$(1),$(2))$(call domainseparator,$(2))%,%,$
 # default domainseparator is /, specify alternative value as first argument
 domainseparator = $(if $(1),$(1),/)
 
-# github(user,package[,version]): returns site of GitHub repository
-github = https://github.com/$(1)/$(2)/archive/$(or $(3),$($(call UPPERCASE,$(pkgname))_VERSION))
+# github(user[,package[,version]]): returns site of GitHub repository
+github = https://github.com/$(1)/$(or $(2),$(pkgname))/archive/$(or $(3),$($(call UPPERCASE,$(pkgname))_VERSION))
 
 # Expressly do not check hashes for those files
 # Exported variables default to immediately expanded in some versions of
-- 
2.14.2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-10-05 21:20 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-04  8:57 [Buildroot] [PATCH] pkg-download: make package name optional in github helper Ismael Luceno
2017-10-04 16:35 ` Arnout Vandecappelle
2017-10-05 10:13   ` Ismael Luceno
2017-10-05 17:50     ` Arnout Vandecappelle
2017-10-05 21:20       ` Ismael Luceno
2017-10-05 10:23   ` Thomas Petazzoni
2017-10-05 12:57     ` Arnout Vandecappelle
2017-10-05 10:22 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox