From 5f1761645f4115277e485e00732a01079405ec06 Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Wed, 12 Jun 2013 16:09:41 +0900 Subject: [PATCH] fix `has_broken_mac_openssl` for building Python. `--with-*-dir` is only effective for Ruby's mkmf.rb. --- plugins/python-build/bin/python-build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index f048964c..2b15ee58 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -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() {