Skip to content
Snippets Groups Projects
Commit 94bb92b4 authored by Dominyk Tiller's avatar Dominyk Tiller
Browse files

doctor: add check for SSL_CERT_DIR


Closes Homebrew/homebrew#43154.

Closes Homebrew/homebrew#43277.

Signed-off-by: default avatarDominyk Tiller <dominyktiller@gmail.com>
parent 98499d1d
No related branches found
No related tags found
No related merge requests found
......@@ -664,6 +664,17 @@ class Checks
end
end
def check_for_unsupported_curl_vars
# Support for SSL_CERT_DIR seemed to be removed in the 10.10.5 update.
if MacOS.version >= :yosemite && !ENV["SSL_CERT_DIR"].nil? then <<-EOS.undent
SSL_CERT_DIR support was removed from Apple's curl.
If fetching formulae fails you should:
unset SSL_CERT_DIR
and remove it from #{shell_profile} if present.
EOS
end
end
def check_which_pkg_config
binary = which "pkg-config"
return if binary.nil?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment