mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
fix has_broken_mac_openssl
for building Python.
`--with-*-dir` is only effective for Ruby's mkmf.rb.
This commit is contained in:
parent
f8c9282e8c
commit
5f1761645f
1 changed files with 2 additions and 2 deletions
|
@ -690,8 +690,8 @@ verify_gcc() {
|
|||
|
||||
has_broken_mac_openssl() {
|
||||
[ "$(uname -s)" = "Darwin" ] &&
|
||||
[ "$(openssl version 2>/dev/null || true)" = "OpenSSL 0.9.8r 8 Feb 2011" ] &&
|
||||
[[ "$PYTHON_CONFIGURE_OPTS" != *--with-openssl-dir=* ]]
|
||||
[ "$(openssl version 2>/dev/null || true)" = "OpenSSL 0.9.8r 8 Feb 2011" ] #&&
|
||||
# [[ "$PYTHON_CONFIGURE_OPTS" != *--with-openssl-dir=* ]] # The "--with-*-dir=" style arguments are only effective for mkmf.rb
|
||||
}
|
||||
|
||||
build_package_mac_openssl() {
|
||||
|
|
Loading…
Reference in a new issue