summaryrefslogtreecommitdiff
path: root/package/wget/Makefile
diff options
context:
space:
mode:
authorPhil Sutter <phil.sutter@viprinet.com>2015-02-24 12:47:16 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-02-28 10:14:36 +0100
commit01a8fc1dc38637b01e61d384cd7e09ba7ec37d9b (patch)
tree1b9101ba1c5f5f719e48378426ad758669f6c615 /package/wget/Makefile
parent7bbb61f8c4df7b4053644c87ed0704abc19fff85 (diff)
package/wget: fix for compiling against openssl
Diffstat (limited to 'package/wget/Makefile')
-rw-r--r--package/wget/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/package/wget/Makefile b/package/wget/Makefile
index e6ebb6ccb..ad2ab61c1 100644
--- a/package/wget/Makefile
+++ b/package/wget/Makefile
@@ -32,7 +32,9 @@ ifeq (${ADK_PACKAGE_WGET_WITHOUT_SSL},y)
CONFIGURE_ARGS+= --with-ssl=no
endif
ifeq (${ADK_PACKAGE_WGET_WITH_OPENSSL},y)
-CONFIGURE_ARGS+= --with-ssl=openssl
+CONFIGURE_ARGS+= --with-ssl=openssl \
+ --with-openssl=yes \
+ --with-libssl-prefix=${STAGING_TARGET_DIR}
endif
ifeq (${ADK_PACKAGE_WGET_WITH_GNUTLS},y)
CONFIGURE_ARGS+= --with-ssl=gnutls \