[Buildroot] [PATCH 1/1] libssh2: fix library search path issues

Peter Korsgaard jacmet at uclibc.org
Thu Sep 26 14:55:12 UTC 2013


>>>>> "Ryan" == Ryan Barnett <rjbarnet at rockwellcollins.com> writes:

 Ryan> Fix issues with some toolchains not finding libssl or libgcrypt.
 Ryan> Fixes http://autobuild.buildroot.net/results/eeaaf41c0c5f88357af8445750dce776774c2b5d
 Ryan> Fixes http://autobuild.buildroot.net/results/7a2590a7c3a1f52590f3e886b7cf9d04ad966a10

 Ryan> Signed-off-by: Ryan Barnett <rjbarnet at rockwellcollins.com>
 Ryan> ---
 Ryan>  package/libssh2/libssh2.mk |    6 ++++--
 Ryan>  1 files changed, 4 insertions(+), 2 deletions(-)

 Ryan> diff --git a/package/libssh2/libssh2.mk b/package/libssh2/libssh2.mk
 Ryan> index 10eb5ed..ff35d9e 100644
 Ryan> --- a/package/libssh2/libssh2.mk
 Ryan> +++ b/package/libssh2/libssh2.mk
 Ryan> @@ -15,10 +15,12 @@ LIBSSH2_CONF_OPT = --disable-examples-build
 Ryan>  # Only select openssl if libgcrypt is not selected
 Ryan>  ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
 Ryan>  LIBSSH2_DEPENDENCIES += libgcrypt
 Ryan> -LIBSSH2_CONF_OPT += --with-libgcrypt --without-openssl
 Ryan> +LIBSSH2_CONF_OPT += --with-libgcrypt --with-libgcrypt-prefix=$(STAGING_DIR)/usr \
 Ryan> +	 --without-openssl
 Ryan>  else
 Ryan>  LIBSSH2_DEPENDENCIES += openssl
 Ryan> -LIBSSH2_CONF_OPT += --with-openssl --without-libgcrypt
 Ryan> +LIBSSH2_CONF_OPT += --with-openssl --with-libssl-prefix=$(STAGING_DIR)/usr \
 Ryan> +	--without-libgcrypt

Committed with minor indentation fixup, thanks.

-- 
Bye, Peter Korsgaard


More information about the buildroot mailing list