| Message ID | 20260701161250.980101-3-ross.burton@arm.com |
|---|---|
| State | New |
| Headers | show |
| Series | [1/3] meson: add explanatory comment to the meson-native wrapper script | expand |
diff --git a/meta/recipes-devtools/meson/meson/meson-wrapper b/meta/recipes-devtools/meson/meson/meson-wrapper index a0c1da23299..57eafca26aa 100755 --- a/meta/recipes-devtools/meson/meson/meson-wrapper +++ b/meta/recipes-devtools/meson/meson/meson-wrapper @@ -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"
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> --- meta/recipes-devtools/meson/meson/meson-wrapper | 4 ---- 1 file changed, 4 deletions(-)