]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
recipes: Fix typos in CA bundle environment setup files
authorMoritz Haase <Moritz.Haase@bmw.de>
Fri, 28 Nov 2025 13:25:51 +0000 (14:25 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 8 Dec 2025 14:45:36 +0000 (14:45 +0000)
Fix a number of identical typos in comments in three environment setup files.

Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-connectivity/openssl/files/environment.d-openssl.sh
meta/recipes-devtools/git/git/environment.d-git.sh
meta/recipes-devtools/python/python3-requests/environment.d-python3-requests.sh

index 0e75e34f9d924a52a72d7f2e8e61ed78a1fe078b..77747c1fdaf8e3f99a3306f758845b88c813380e 100644 (file)
@@ -4,7 +4,7 @@ export OPENSSL_ENGINES="$OECORE_NATIVE_SYSROOT/usr/lib/engines-3"
 export BB_ENV_PASSTHROUGH_ADDITIONS="${BB_ENV_PASSTHROUGH_ADDITIONS:-} OPENSSL_CONF OPENSSL_MODULES OPENSSL_ENGINES"
 
 # Respect host env SSL_CERT_FILE/SSL_CERT_DIR first, then auto-detected host cert, then cert in buildtools
-# CAFILE/CAPATH is auto-deteced when source buildtools
+# CAFILE/CAPATH is auto-detected when source buildtools
 if [ -z "${SSL_CERT_FILE:-}" ]; then
        if [ -n "${CAFILE:-}" ];then
                export SSL_CERT_FILE="$CAFILE"
index fdfa721c3b2ed7988a6fac01936c35eb7e6b95f3..6b4d941e79fe2e1817f0f3674bab744a1b1a5030 100644 (file)
@@ -1,5 +1,5 @@
 # Respect host env GIT_SSL_CAINFO/GIT_SSL_CAPATH first, then auto-detected host cert, then cert in buildtools
-# CAFILE/CAPATH is auto-deteced when source buildtools
+# CAFILE/CAPATH is auto-detected when source buildtools
 if [ -z "${GIT_SSL_CAINFO:-}" ]; then
        if [ -n "${CAFILE:-}" ];then
                export GIT_SSL_CAINFO="$CAFILE"
index 400972814b6ed237df29919fee4cb74cf77eea8c..5be7a3a9ad3a3a7f517753efc279446e66c952ab 100644 (file)
@@ -1,5 +1,5 @@
 # Respect host env REQUESTS_CA_BUNDLE first, then auto-detected host cert, then cert in buildtools
-# CAFILE/CAPATH is auto-deteced when source buildtools
+# CAFILE/CAPATH is auto-detected when source buildtools
 if [ -z "${REQUESTS_CA_BUNDLE:-}" ]; then
        if [ -n "${CAFILE:-}" ];then
                export REQUESTS_CA_BUNDLE="$CAFILE"