From: Vadim Kochan Date: Mon, 25 Mar 2019 23:42:37 +0000 (+0200) Subject: package/uftp: fix compilation with openssl X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aaca9168744db36daf7afca86594914df24dffdc;p=buildroot.git package/uftp: fix compilation with openssl Build fails with -lssl but succeeds with -lcrypto, also thats how it is linked by default in 'makefile'. Fixes: http://autobuild.buildroot.net/results/01a455ddcbc16cd2111352d22bf6603842df4ab2 Signed-off-by: Vadim Kochan Signed-off-by: Thomas Petazzoni --- diff --git a/package/uftp/uftp.mk b/package/uftp/uftp.mk index abdb0a4def..edf22cf5ce 100644 --- a/package/uftp/uftp.mk +++ b/package/uftp/uftp.mk @@ -11,7 +11,7 @@ UFTP_LICENSE_FILES = LICENSE.txt ifeq ($(BR2_PACKAGE_OPENSSL),y) UFTP_DEPENDENCIES += host-pkgconf openssl -UFTP_MAKE_OPTS += CRYPT_LIB="`$(PKG_CONFIG_HOST_BINARY) --libs libssl`" +UFTP_MAKE_OPTS += CRYPT_LIB="`$(PKG_CONFIG_HOST_BINARY) --libs libcrypto`" else UFTP_MAKE_OPTS += NO_ENCRYPTION=1 endif