diff mbox series

[PATCHv5,6/9] package/pkg-download: export 'SSH' for use in the download backends

Message ID 20190219103839.25409-6-patrickdepinguin@gmail.com
State Rejected
Headers show
Series [PATCHv5,1/9] support/download: reintroduce 'source-check' target | expand

Commit Message

Thomas De Schampheleire Feb. 19, 2019, 10:38 a.m. UTC
From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>

Originally, the tools defined in pkg-download.mk were used from Makefiles
and were directly available. Due to the introduction of the download
infrastructure in shell scripts, these variables now need to be exported in
order for the scripts to see them.

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
---
 package/pkg-download.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

v5: new patch
diff mbox series

Patch

diff --git a/package/pkg-download.mk b/package/pkg-download.mk
index dfc4460c6a..17d1ca99ee 100644
--- a/package/pkg-download.mk
+++ b/package/pkg-download.mk
@@ -15,7 +15,7 @@  export BZR := $(call qstrip,$(BR2_BZR))
 export GIT := $(call qstrip,$(BR2_GIT))
 export HG := $(call qstrip,$(BR2_HG))
 export SCP := $(call qstrip,$(BR2_SCP))
-SSH := $(call qstrip,$(BR2_SSH))
+export SSH := $(call qstrip,$(BR2_SSH))
 export LOCALFILES := $(call qstrip,$(BR2_LOCALFILES))
 
 DL_WRAPPER = support/download/dl-wrapper