소스 검색

Merge pull request #1025 from jamieconnolly/fix-missing-openssl-lib

Ignore LibreSSL bundled with macOS 10.13
pull/1031/head
Yamashita, Yuu 8 년 전
committed by GitHub
부모
커밋
8d5ffcd082
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
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
}

불러오는 중...
취소
저장