summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Draszik <adraszik@digisoft.tv>2014-10-13 12:09:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-11 17:39:48 +0000
commit4d8b1f51d5910e12c0189b7b3df31f4d8fd7bffb (patch)
tree2c5d9a79cd0966738d01015cbd06906a0ee2a9cf
parent2471f9b32a96bcb64a5a04d53456818cad57befe (diff)
downloadopenembedded-core-4d8b1f51d5910e12c0189b7b3df31f4d8fd7bffb.tar.gz
openembedded-core-4d8b1f51d5910e12c0189b7b3df31f4d8fd7bffb.tar.bz2
openembedded-core-4d8b1f51d5910e12c0189b7b3df31f4d8fd7bffb.zip
openssl: fix hard paths in native openssl
This causes the package to not be relocateable from sstate The OpenSSL binaries respect a few environment variables for determining locations of files, so we now use these to point the binaries to the relocated locations. [YOCTO #6827] (From OE-Core rev: 771d3123331fbfab1eb9ce47e3013eabcb2248f5) Signed-off-by: André Draszik <adraszik@digisoft.tv> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta/recipes-connectivity/openssl/openssl.inc9
1 files changed, 8 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc
index 9ec884f332..31dfd8fea7 100644
--- a/meta/recipes-connectivity/openssl/openssl.inc
+++ b/meta/recipes-connectivity/openssl/openssl.inc
@@ -193,5 +193,12 @@ do_install_ptest () {
install util/shlib_wrap.sh ${D}${PTEST_PATH}/util
}
-BBCLASSEXTEND = "native nativesdk"
+do_install_append_virtclass-native() {
+ create_wrapper ${D}${bindir}/openssl \
+ OPENSSL_CONF=${libdir}/ssl/openssl.cnf \
+ SSL_CERT_DIR=${libdir}/ssl/certs \
+ SSL_CERT_FILE=${libdir}/ssl/cert.pem \
+ OPENSSL_ENGINES=${libdir}/ssl/engines
+}
+BBCLASSEXTEND = "native nativesdk"