diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2018-05-21 16:33:43 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2018-05-21 16:33:58 +0200 |
commit | fa5511ec32dd78dd87f8a8d472f33ae7f172be5c (patch) | |
tree | 4b98b3a808f53f39c4f568dfbec5aabef6df6c5d | |
parent | e5dc2fc778314cf8ae7088adc638c5997d43e118 (diff) |
curl: use ca-path, make git clone ssl url working
-rw-r--r-- | package/curl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/curl/Makefile b/package/curl/Makefile index a537893ab..b4e1f5abc 100644 --- a/package/curl/Makefile +++ b/package/curl/Makefile @@ -91,8 +91,9 @@ CONFIGURE_ARGS+= --enable-cookies \ --without-libssh2 \ --without-librtmp \ --without-libidn \ + --with-ca-path="/etc/ssl/certs" \ --with-random="/dev/urandom" \ - --with-ca-bundle="/etc/ssl/cert.pem" + --without-ca-bundle ifneq (${ADK_PACKAGE_CURL_WITH_IPV6},) CONFIGURE_ARGS+= --enable-ipv6 |