diff options
author | Federico Pellegrin <fede@evolware.org> | 2020-11-10 05:20:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-11 10:08:12 +0000 |
commit | 7d2fd032cd7c6c01e2cbd1e6847ba5d3790a6086 (patch) | |
tree | ff5042627804f2eadf2a4900ef56389585b50cf3 | |
parent | 834ef343b3694ccc4d44999771d49fb316f242e0 (diff) | |
download | poky-7d2fd032cd7c6c01e2cbd1e6847ba5d3790a6086.tar.gz |
openssl: Add c_rehash to misc package and add perl runtime dependency
The following changes since commit f075071761172c69f8ae2be5868d51ef9ef646e7:
conf: update for release 3.2 (2020-11-09 13:16:13 +0000)
are available in the Git repository at:
git://push.yoctoproject.org/poky-contrib fedepell/bug14083
Federico Pellegrin (1):
openssl: Add c_rehash to misc package and add perl runtime dependency
c_rehash implemented in perl is back (in history was moved to shell for
some time), so handle it inside the -misc package so just that one will
carry the heavy runtime dependency on perl and not the whole openssl
package. Note: in misc there were already before a few perl files
(tsget.pl and CA.pl) so the added perl dependency will fix those too.
[YOCTO #14083]
(From OE-Core rev: 70da1f956bfbb627691c47eba7451182aca758e3)
Signed-off-by: Federico Pellegrin <fede@evolware.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl_1.1.1h.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl_1.1.1h.bb b/meta/recipes-connectivity/openssl/openssl_1.1.1h.bb index eb11fe3960..1827167201 100644 --- a/meta/recipes-connectivity/openssl/openssl_1.1.1h.bb +++ b/meta/recipes-connectivity/openssl/openssl_1.1.1h.bb | |||
@@ -195,13 +195,14 @@ FILES_openssl-conf = "${sysconfdir}/ssl/openssl.cnf \ | |||
195 | ${libdir}/ssl-1.1/openssl.cnf* \ | 195 | ${libdir}/ssl-1.1/openssl.cnf* \ |
196 | " | 196 | " |
197 | FILES_${PN}-engines = "${libdir}/engines-1.1" | 197 | FILES_${PN}-engines = "${libdir}/engines-1.1" |
198 | FILES_${PN}-misc = "${libdir}/ssl-1.1/misc" | 198 | FILES_${PN}-misc = "${libdir}/ssl-1.1/misc ${bindir}/c_rehash" |
199 | FILES_${PN} =+ "${libdir}/ssl-1.1/*" | 199 | FILES_${PN} =+ "${libdir}/ssl-1.1/*" |
200 | FILES_${PN}_append_class-nativesdk = " ${SDKPATHNATIVE}/environment-setup.d/openssl.sh" | 200 | FILES_${PN}_append_class-nativesdk = " ${SDKPATHNATIVE}/environment-setup.d/openssl.sh" |
201 | 201 | ||
202 | CONFFILES_openssl-conf = "${sysconfdir}/ssl/openssl.cnf" | 202 | CONFFILES_openssl-conf = "${sysconfdir}/ssl/openssl.cnf" |
203 | 203 | ||
204 | RRECOMMENDS_libcrypto += "openssl-conf" | 204 | RRECOMMENDS_libcrypto += "openssl-conf" |
205 | RDEPENDS_${PN}-misc = "perl" | ||
205 | RDEPENDS_${PN}-ptest += "openssl-bin perl perl-modules bash" | 206 | RDEPENDS_${PN}-ptest += "openssl-bin perl perl-modules bash" |
206 | 207 | ||
207 | RDEPENDS_${PN}-bin += "openssl-conf" | 208 | RDEPENDS_${PN}-bin += "openssl-conf" |