diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2018-04-09 13:56:56 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-04 09:54:56 +0100 |
commit | 9a02cd981eee8b1cd488373659a8a610962309e3 (patch) | |
tree | e85d4db853cf95dd7c617056631bcd22eaba939b /meta | |
parent | 4c7c3df74e787c1d880c23d7c72de9e1922d8079 (diff) | |
download | openembedded-core-9a02cd981eee8b1cd488373659a8a610962309e3.tar.gz openembedded-core-9a02cd981eee8b1cd488373659a8a610962309e3.tar.bz2 openembedded-core-9a02cd981eee8b1cd488373659a8a610962309e3.zip |
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.
Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/bind/bind_9.10.6.bb | 2 |
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 \ --disable-devpoll --enable-epoll --with-gost=no \ --with-gssapi=no --with-ecdsa=yes \ --sysconfdir=${sysconfdir}/bind \ - --with-openssl=${STAGING_LIBDIR}/.. \ + --with-openssl=${STAGING_DIR_HOST}${prefix} \ " inherit autotools update-rc.d systemd useradd pkgconfig python3-dir |