From: Romain Naour Date: Sat, 14 Feb 2015 17:38:28 +0000 (+0100) Subject: package/libssh2: fix zlib library search path issues X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3f335ed5508abe3a19e5e2106eb5339531cb4a82;p=buildroot.git package/libssh2: fix zlib library search path issues Like for lingcrypt and openssl, help the configure script to find zlib installed in STAGING_DIR. Otherwise, It might find the one installed on the host: checking how to link with libz... /usr/lib/libz.so -Wl,-rpath -Wl,/usr/lib Fixes: http://autobuild.buildroot.net/results/93b/93b43e114f21a22f0f8b7d7dd6774c089c426cd1 Signed-off-by: Romain Naour Signed-off-by: Thomas Petazzoni --- diff --git a/package/libssh2/libssh2.mk b/package/libssh2/libssh2.mk index c9f7059bc1..1a1a06f6f2 100644 --- a/package/libssh2/libssh2.mk +++ b/package/libssh2/libssh2.mk @@ -31,7 +31,8 @@ endif # Add zlib support if enabled ifeq ($(BR2_PACKAGE_ZLIB),y) LIBSSH2_DEPENDENCIES += zlib -LIBSSH2_CONF_OPTS += --with-libz +LIBSSH2_CONF_OPTS += --with-libz \ + --with-libz-prefix=$(STAGING_DIR)/usr else LIBSSH2_CONF_OPTS += --without-libz endif