summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2018-04-09 13:56:56 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-05-04 13:28:04 +0100
commit3bcba3406c7e465578b3fe9aa8863680209243b3 (patch)
treefebeed4bfdb31376a5017a7f7e4e560cebab8df5 /meta/recipes-connectivity
parent2be3492a94e9683ee049c58cb1c52e36594a891f (diff)
downloadpoky-3bcba3406c7e465578b3fe9aa8863680209243b3.tar.gz
bind: fix openSSL detection when using multiarch
In multiarch /usr/include and /usr/lib/<tuple/ are not on the same level anymore. This change will pass a correct includedir, but a wrong libdir, but the linker picks it up anyway. Tested on multiarch and regular build. (From OE-Core rev: 9a02cd981eee8b1cd488373659a8a610962309e3) Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r--meta/recipes-connectivity/bind/bind_9.10.6.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/bind/bind_9.10.6.bb b/meta/recipes-connectivity/bind/bind_9.10.6.bb
index 8b8835ba80..20c8d7b55a 100644
--- a/meta/recipes-connectivity/bind/bind_9.10.6.bb
+++ b/meta/recipes-connectivity/bind/bind_9.10.6.bb
@@ -35,7 +35,7 @@ EXTRA_OECONF = " ${ENABLE_IPV6} --with-libtool --enable-threads \
35 --disable-devpoll --enable-epoll --with-gost=no \ 35 --disable-devpoll --enable-epoll --with-gost=no \
36 --with-gssapi=no --with-ecdsa=yes \ 36 --with-gssapi=no --with-ecdsa=yes \
37 --sysconfdir=${sysconfdir}/bind \ 37 --sysconfdir=${sysconfdir}/bind \
38 --with-openssl=${STAGING_LIBDIR}/.. \ 38 --with-openssl=${STAGING_DIR_HOST}${prefix} \
39 " 39 "
40 40
41inherit autotools update-rc.d systemd useradd pkgconfig python3-dir 41inherit autotools update-rc.d systemd useradd pkgconfig python3-dir