diff options
author | Caner Altinbasak <cal@brightsign.biz> | 2023-02-24 11:30:32 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-02-26 11:49:41 +0000 |
commit | 24e29f2d08df4653fa09baf9304f8ebb15712e8f (patch) | |
tree | 9706a632ca659d97953d705c28149d0862fa8ac8 /bitbake | |
parent | 2e18bbb307e050650845314f7837cc4d5d8aea86 (diff) | |
download | poky-24e29f2d08df4653fa09baf9304f8ebb15712e8f.tar.gz |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
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', | |||
855 | 'AWS_PROFILE', | 855 | 'AWS_PROFILE', |
856 | 'AWS_ACCESS_KEY_ID', | 856 | 'AWS_ACCESS_KEY_ID', |
857 | 'AWS_SECRET_ACCESS_KEY', | 857 | 'AWS_SECRET_ACCESS_KEY', |
858 | 'AWS_DEFAULT_REGION'] | 858 | 'AWS_DEFAULT_REGION', |
859 | 'GIT_CACHE_PATH', | ||
860 | 'SSL_CERT_DIR'] | ||
859 | 861 | ||
860 | def get_fetcher_environment(d): | 862 | def get_fetcher_environment(d): |
861 | newenv = {} | 863 | newenv = {} |