瀏覽代碼

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
}

Loading…
取消
儲存