]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
meson: remove obsolete SSL_CERT_DIR assignment in the wrapper script
authorRoss Burton <ross.burton@arm.com>
Wed, 1 Jul 2026 16:12:50 +0000 (17:12 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 6 Jul 2026 16:15:09 +0000 (17:15 +0100)
The wrapper script no longer needs to set SSL_CERT_DIR to what it hopes
is the right path, as openssl now does this when initialising the SDK[1].

[1] oe-core d6b15d1e70b ("openssl: export necessary env vars in SDK")

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/meson/meson/meson-wrapper

index a0c1da232993a6466eaedee66706ba5aad16d60e..57eafca26aa1a7872b4160fb10275beaa215fda6 100755 (executable)
@@ -6,10 +6,6 @@ if [ -z "$OECORE_NATIVE_SYSROOT" ]; then
     exec "meson.real" "$@"
 fi
 
-if [ -z "$SSL_CERT_DIR" ]; then
-    export SSL_CERT_DIR="$OECORE_NATIVE_SYSROOT/etc/ssl/certs/"
-fi
-
 case "$1" in
 setup|configure|dist|install|introspect|init|test|wrap|subprojects|rewrite|compile|devenv|env2mfile|help)
     MESON_CMD="$1"