Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5215668 commit 2d8fb6dCopy full SHA for 2d8fb6d
deps/libgit2.mk
@@ -47,6 +47,10 @@ OPENSSL_DIR=$(shell openssl version -d | cut -d '"' -f 2)
47
ifeq ($(shell [ -e $(OPENSSL_DIR)/cert.pem ] && echo exists),exists)
48
CERTFILE=$(OPENSSL_DIR)/cert.pem
49
endif
50
+# This certfile location observed on Ubuntu 16.04
51
+ifeq ($(shell [ -e $(OPENSSL_DIR)/certs/ca-certificates.crt ] && echo exists),exists)
52
+CERTFILE=$(OPENSSL_DIR)/certs/ca-certificates.crt
53
+endif
54
# This certfile location observed on Debian 7
55
ifeq ($(shell [ -e $(OPENSSL_DIR)/certs/ca.pem ] && echo exists),exists)
56
CERTFILE=$(OPENSSL_DIR)/certs/ca.pem
0 commit comments