From: Andrei Gherzan Date: Thu, 30 May 2019 12:22:23 +0000 (+0100) Subject: ca-certificates: Fix openssl runtime dependencies X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~14331 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc778c70449ee5401b5a24ad18b22b88338c47c5;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 4c0425302f1..efd9eaa71e4 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"