From 24e29f2d08df4653fa09baf9304f8ebb15712e8f Mon Sep 17 00:00:00 2001 From: Caner Altinbasak Date: Fri, 24 Feb 2023 11:30:32 +0000 Subject: bitbake: fetch2: Add GIT_CACHE_PATH and SSL_CERT_DIR into FETCH_EXPORT_VARS These environment variables are needed by gclient and needed to be passed into fetcher. (Bitbake rev: 9414ba62454c6b911addf6b0bc02af2afc69b926) Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 747356dfa1..cf65727a20 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py @@ -855,7 +855,9 @@ FETCH_EXPORT_VARS = ['HOME', 'PATH', 'AWS_PROFILE', 'AWS_ACCESS_KEY_ID', 'AWS_SECRET_ACCESS_KEY', - 'AWS_DEFAULT_REGION'] + 'AWS_DEFAULT_REGION', + 'GIT_CACHE_PATH', + 'SSL_CERT_DIR'] def get_fetcher_environment(d): newenv = {} -- cgit v1.2.3-54-g00ecf