From ee88853e04b3caa2bdbfd73a5d991baebf59df10 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Wed, 11 Jan 2017 11:06:57 +0200 Subject: [PATCH] python: link with static libs of ssl, crypto for host builds Signed-off-by: Alexandru Ardelean --- lang/python/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lang/python/Makefile b/lang/python/Makefile index ae9a2146e..ed708b578 100644 --- a/lang/python/Makefile +++ b/lang/python/Makefile @@ -229,6 +229,9 @@ define PyPackage/python/filespec -|$(PYTHON_PKG_DIR) endef +HOST_LDFLAGS += \ + $$$$(pkg-config --static --libs libcrypto libssl) + HOST_CONFIGURE_ARGS+= \ --without-cxx-main \ --without-pymalloc \