summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-requests/environment.d-python3-requests.sh
diff options
context:
space:
mode:
authorChangqing Li <changqing.li@windriver.com>2025-04-28 13:53:05 +0800
committerSteve Sakoman <steve@sakoman.com>2025-05-02 08:20:12 -0700
commit2e0b9e9a86f6bd2ba13082e31d7c097b254f30a4 (patch)
treea7fda622eeddd5e43d7cdf72e6046a7463e3ebef /meta/recipes-devtools/python/python3-requests/environment.d-python3-requests.sh
parentf587cfcb8aac3c53f1c029e7809bfcc8f30a4f05 (diff)
downloadpoky-2e0b9e9a86f6bd2ba13082e31d7c097b254f30a4.tar.gz
buildtools-tarball: move setting of envvars to respective envfile
* make git,curl,python3-requests align with openssl, move the setting of envvars into respective envfile * for environment.d-openssl.sh, also check if ca-certificates.crt exist before export envvars (From OE-Core rev: 5f4fd544d3df7365224599c9efdce4e545f51d5e) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/recipes-devtools/python/python3-requests/environment.d-python3-requests.sh')
-rw-r--r--meta/recipes-devtools/python/python3-requests/environment.d-python3-requests.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-requests/environment.d-python3-requests.sh b/meta/recipes-devtools/python/python3-requests/environment.d-python3-requests.sh
new file mode 100644
index 0000000000..f2eee203ca
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-requests/environment.d-python3-requests.sh
@@ -0,0 +1,3 @@
1if [ -e "${OECORE_NATIVE_SYSROOT}/etc/ssl/certs/ca-certificates.crt" ];then
2 export REQUESTS_CA_BUNDLE="${OECORE_NATIVE_SYSROOT}/etc/ssl/certs/ca-certificates.crt"
3fi