aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support
diff options
context:
space:
mode:
authorJavier Viguera <javier.viguera@digi.com>2014-04-23 10:34:52 +0200
committerJoe MacDonald <joe@deserted.net>2014-04-24 20:39:15 -0400
commit402ac25adbda6bd316e7f2dc0039517003d76176 (patch)
tree94e8ef74177ef98d7dd5d064fb6be26e2f62fa3a /meta-networking/recipes-support
parent3fb3c2c8f8c958ca810af1302c0e7109528b8b66 (diff)
downloadmeta-openembedded-contrib-402ac25adbda6bd316e7f2dc0039517003d76176.tar.gz
stunnel: fix configure ssl parameter
'--with-ssl=DIR' configure parameter expects the location of the libraries and include files in the sysroot. This means the directory containing the 'lib' and 'include' subdirectories, not the include directory itself. This fixes an error at configure time: checking <local-path>/tmp/sysroots/ccimx6adpt/usr/include/include/openssl/engine.h usability... no (notice duplicated include entry in above line) Signed-off-by: Javier Viguera <javier.viguera@digi.com> Signed-off-by: Joe MacDonald <joe@deserted.net>
Diffstat (limited to 'meta-networking/recipes-support')
-rw-r--r--meta-networking/recipes-support/stunnel/stunnel_4.56.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-support/stunnel/stunnel_4.56.bb b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
index 086d0b7aaf..938f043a9d 100644
--- a/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
+++ b/meta-networking/recipes-support/stunnel/stunnel_4.56.bb
@@ -12,4 +12,4 @@ SRC_URI[sha256sum] = "9cae2cfbe26d87443398ce50d7d5db54e5ea363889d5d2ec8d2778a01c
inherit autotools
-EXTRA_OECONF += "--with-ssl='${STAGING_INCDIR}' --disable-fips"
+EXTRA_OECONF += "--with-ssl='${STAGING_EXECPREFIXDIR}' --disable-fips"