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-08 17:38:21 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-04-11 11:49:59 +0100
commit2a1eb07755871aaf1e3f35547b7315237592ea27 (patch)
tree5ba14c3bad3b3daac5f70511f1cb9d1c92952c96 /meta/recipes-devtools/python/python3-requests/environment.d-python3-requests.sh
parent07b2d077c79c44e9e224ef56f541d46591d4cde7 (diff)
downloadpoky-2a1eb07755871aaf1e3f35547b7315237592ea27.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: 9d8ebfcd55ad274e79cb81f162397c8f39f4287b) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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