From patchwork Wed Apr 17 18:38:01 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: libcurl: specify capath X-Patchwork-Submitter: "Shawn J. Goff" X-Patchwork-Id: 237340 Message-Id: <1366223881-6367-1-git-send-email-shawn7400@gmail.com> To: buildroot@busybox.net Cc: "Shawn J. Goff" Date: Wed, 17 Apr 2013 14:38:01 -0400 From: "Shawn J. Goff" List-Id: Discussion and development of buildroot From: "Shawn J. Goff" Since openssl's path is '/etc/ssl/' (specified in our openssl package), we should also make sure that's what curl is using. Previously, it's hasn't been specified, which means it changes depending on the host system where it's compiled. Signed-off-by: Shawn J. Goff --- package/libcurl/libcurl.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk index a631953..75c9601 100644 --- a/package/libcurl/libcurl.mk +++ b/package/libcurl/libcurl.mk @@ -16,7 +16,7 @@ LIBCURL_INSTALL_STAGING = YES # probably almost never used. See # http://curl.haxx.se/docs/manpage.html#--ntlm. LIBCURL_CONF_OPT = --disable-verbose --disable-manual \ - --enable-hidden-symbols --disable-ntlm-wb + --enable-hidden-symbols --disable-ntlm-wb --with-ca-path=/etc/ssl/certs LIBCURL_CONFIG_SCRIPTS = curl-config ifeq ($(BR2_PACKAGE_OPENSSL),y)