From 3eef74e3c3a53b16899db9f0058af28e56c0fef9 Mon Sep 17 00:00:00 2001 From: Jon Mason Date: Sun, 16 Jul 2023 08:55:39 -0500 Subject: [PATCH] arm/optee-test: modify to use build openssl By default, optee-test is using an ancient version of openssl (1.2.0o) in binary form, located in the optee-test build tree. musl is already working around this. So, use those defaults for everyone. Signed-off-by: Jon Mason --- meta-arm/recipes-security/optee/optee-test_3.20.0.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-arm/recipes-security/optee/optee-test_3.20.0.bb b/meta-arm/recipes-security/optee/optee-test_3.20.0.bb index 190c2f71..3c868e1d 100644 --- a/meta-arm/recipes-security/optee/optee-test_3.20.0.bb +++ b/meta-arm/recipes-security/optee/optee-test_3.20.0.bb @@ -7,6 +7,6 @@ SRC_URI += " \ " SRCREV = "5db8ab4c733d5b2f4afac3e9aef0a26634c4b444" -EXTRA_OEMAKE:append:libc-musl = " OPTEE_OPENSSL_EXPORT=${STAGING_INCDIR}" -DEPENDS:append:libc-musl = " openssl" -CFLAGS:append:libc-musl = " -Wno-error=deprecated-declarations" +EXTRA_OEMAKE:append = " OPTEE_OPENSSL_EXPORT=${STAGING_INCDIR}" +DEPENDS:append = " openssl" +CFLAGS:append = " -Wno-error=deprecated-declarations"