ソースを参照

Ignore LibreSSL bundled with macOS 10.13

pull/1025/head
Jamie Connolly 6年前
コミット
eb70ee3e73
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A202E5A39CEBDE66
1個のファイルの変更3行の追加2行の削除
  1. +3
    -2
      plugins/python-build/bin/python-build

+ 3
- 2
plugins/python-build/bin/python-build ファイルの表示

@ -1385,8 +1385,9 @@ use_homebrew_readline() {
}
has_broken_mac_openssl() {
is_mac &&
[[ "$(/usr/bin/openssl version 2>/dev/null || true)" = "OpenSSL 0.9.8"?* ]] &&
is_mac || return 1
local openssl_version="$(/usr/bin/openssl version 2>/dev/null || true)"
[[ $openssl_version = "OpenSSL 0.9.8"?* || $openssl_version = "LibreSSL"* ]] &&
! use_homebrew_openssl
}

読み込み中…
キャンセル
保存