Commit 4f3c8cf9 authored by Shawn J. Goff's avatar Shawn J. Goff Committed by Peter Korsgaard
Browse files

libcurl: specify capath



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: default avatarShawn J. Goff <shawn7400@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent f39b706b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -27,7 +27,9 @@ LIBCURL_CONF_ENV += ac_cv_lib_crypto_CRYPTO_lock=yes
# Fix it by setting LD_LIBRARY_PATH to something sensible so those libs
# are found first.
LIBCURL_CONF_ENV += LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:/lib:/usr/lib
LIBCURL_CONF_OPT += --with-ssl=$(STAGING_DIR)/usr --with-random=/dev/urandom
LIBCURL_CONF_OPT += --with-ssl=$(STAGING_DIR)/usr \
	--with-random=/dev/urandom \
	--with-ca-path=/etc/ssl/certs
else
LIBCURL_CONF_OPT += --without-ssl
endif