@@ -18,14 +18,13 @@ inherit autotools pkgconfig ptest
EXTRA_OECONF += "\
--with-libz \
- --with-libz-prefix=${STAGING_LIBDIR} \
--disable-rpath \
"
DISABLE_STATIC = ""
# only one of openssl and gcrypt could be set
PACKAGECONFIG ??= "openssl"
-PACKAGECONFIG[openssl] = "--with-crypto=openssl --with-libssl-prefix=${STAGING_LIBDIR}, , openssl"
+PACKAGECONFIG[openssl] = "--with-crypto=openssl, , openssl"
PACKAGECONFIG[gcrypt] = "--with-crypto=libgcrypt --with-libgcrypt-prefix=${STAGING_EXECPREFIXDIR}, , libgcrypt"
BBCLASSEXTEND = "native nativesdk"
The value of STAGING_LIBDIR depends on baselib, which may be "lib" or "lib64" depending on the target architecture. To avoid making PACKAGECONFIG unnecessarily arch-dependent, we can use drop the search prefix for libz and openssl as the configure script is capable of finding them without this information. Signed-off-by: Paul Barker <paul@pbarker.dev> --- meta/recipes-support/libssh2/libssh2_1.11.1.bb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)