All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/uftp: Fix compilation with openssl
@ 2019-03-25 23:42 Vadim Kochan
  2019-03-26 11:58 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Vadim Kochan @ 2019-03-25 23:42 UTC (permalink / raw)
  To: buildroot

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 <vadim4j@gmail.com>
---
 package/uftp/uftp.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH 1/1] package/uftp: Fix compilation with openssl
  2019-03-25 23:42 [Buildroot] [PATCH 1/1] package/uftp: Fix compilation with openssl Vadim Kochan
@ 2019-03-26 11:58 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2019-03-26 11:58 UTC (permalink / raw)
  To: buildroot

On Tue, 26 Mar 2019 01:42:37 +0200
Vadim Kochan <vadim4j@gmail.com> wrote:

> 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 <vadim4j@gmail.com>
> ---
>  package/uftp/uftp.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-03-26 11:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-25 23:42 [Buildroot] [PATCH 1/1] package/uftp: Fix compilation with openssl Vadim Kochan
2019-03-26 11:58 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.