From: Andrei Gherzan Date: Thu, 30 May 2019 12:22:23 +0000 (+0100) Subject: ca-certificates: Fix openssl runtime dependencies X-Git-Tag: uninative-2.6~222 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=dc778c70449ee5401b5a24ad18b22b88338c47c5;p=openembedded-core.git ca-certificates: Fix openssl runtime dependencies Since yocto thud, and more specifically since poky switched to openssl 1.1 line, the openssl binary is provided by 'openssl-bin'. This impacts the native and nativesdk recipe variants as well. Signed-off-by: Andrei Gherzan Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-support/ca-certificates/ca-certificates_20190110.bb b/meta/recipes-support/ca-certificates/ca-certificates_20190110.bb index 4c0425302f..efd9eaa71e 100644 --- a/meta/recipes-support/ca-certificates/ca-certificates_20190110.bb +++ b/meta/recipes-support/ca-certificates/ca-certificates_20190110.bb @@ -82,6 +82,8 @@ do_install_append_class-native () { SYSROOT="${D}${base_prefix}" ${D}${sbindir}/update-ca-certificates } -RDEPENDS_${PN} += "openssl" +RDEPENDS_${PN}_class-target = "openssl-bin" +RDEPENDS_${PN}_class-native = "openssl-native" +RDEPENDS_${PN}_class-nativesdk = "nativesdk-openssl-bin" BBCLASSEXTEND = "native nativesdk"