diff options
author | mykhani <yasir_khan@mentor.com> | 2013-12-17 13:28:35 +0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-18 11:20:26 +0000 |
commit | 3c2f9cf615c964e8303fd3e225ea7dd7b5485155 (patch) | |
tree | 1df14d3f214aed84b86c57fb0149b40471c9721b /meta/recipes-connectivity/openssl | |
parent | 9582ed663d12e635c02c59bff8665c929fa35656 (diff) | |
download | openembedded-core-3c2f9cf615c964e8303fd3e225ea7dd7b5485155.tar.gz openembedded-core-3c2f9cf615c964e8303fd3e225ea7dd7b5485155.tar.bz2 openembedded-core-3c2f9cf615c964e8303fd3e225ea7dd7b5485155.zip |
openssl.inc: Install c_rehash utility with openssl
c_rehash utility is not being installed with openssl.It conveniently
generates hash and symbolic links based on it for CA certificates
stored locally for SSL based server authentication
Signed-off-by: Yasir-Khan <yasir_khan@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssl')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc index 3bfe569b3c..cdb1809339 100644 --- a/meta/recipes-connectivity/openssl/openssl.inc +++ b/meta/recipes-connectivity/openssl/openssl.inc @@ -13,6 +13,9 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=f9a8f968107345e0b75aa8c2ecaa7ec8" DEPENDS = "perl-native-runtime" +# Adding RDEPENDS for perl scripts +RDEPENDS_${PN}-misc +="perl" + SRC_URI = "http://www.openssl.org/source/openssl-${PV}.tar.gz \ " S = "${WORKDIR}/openssl-${PV}" @@ -37,7 +40,7 @@ PACKAGES =+ "libcrypto libssl ${PN}-misc openssl-conf" FILES_libcrypto = "${base_libdir}/libcrypto${SOLIBS}" FILES_libssl = "${libdir}/libssl.so.*" FILES_${PN} =+ " ${libdir}/ssl/*" -FILES_${PN}-misc = "${libdir}/ssl/misc" +FILES_${PN}-misc = "${libdir}/ssl/misc ${bindir}/c_rehash" FILES_${PN}-dev += "${base_libdir}/libcrypto${SOLIBSDEV}" # Add the openssl.cnf file to the openssl-conf package. Make the libcrypto @@ -157,6 +160,8 @@ do_install () { sed -i -e '1s,.*,#!${bindir}/env perl,' ${D}${libdir}/ssl/misc/CA.pl oe_multilib_header openssl/opensslconf.h + # The c_rehash utility isn't installed by the normal installation process. + install -m 0755 ${S}/tools/c_rehash ${D}${bindir} } BBCLASSEXTEND = "native nativesdk" |