Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2d8fb6d

Browse files
TotalVerbfcard
authored andcommitted
Add case for Ubuntu 16.04 (JuliaLang#19390)
1 parent 5215668 commit 2d8fb6d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

deps/libgit2.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ OPENSSL_DIR=$(shell openssl version -d | cut -d '"' -f 2)
4747
ifeq ($(shell [ -e $(OPENSSL_DIR)/cert.pem ] && echo exists),exists)
4848
CERTFILE=$(OPENSSL_DIR)/cert.pem
4949
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
5054
# This certfile location observed on Debian 7
5155
ifeq ($(shell [ -e $(OPENSSL_DIR)/certs/ca.pem ] && echo exists),exists)
5256
CERTFILE=$(OPENSSL_DIR)/certs/ca.pem

0 commit comments

Comments
 (0)