We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81f43ab commit 601cc79Copy full SHA for 601cc79
.travis.yml
@@ -10,7 +10,7 @@ matrix:
10
before_install:
11
# OS and default Python info
12
- uname -a
13
- - if [ "$TRAVIS_OS_NAME" = "osx" ]; then sw_vers; fi
+ - sw_vers
14
15
install:
16
- HOMEBREW_NO_AUTO_UPDATE=1 brew install openssl
build_python.sh
@@ -22,6 +22,6 @@ tar -zxvf "Python-$PY_VER.tgz" &> /dev/null
22
23
cd "Python-$PY_VER"
24
large_echo "Configure Python"
25
-./configure MACOSX_DEPLOYMENT_TARGET=10.11 CPPFLAGS="-I$OPENSSL_ROOT/include" LDFLAGS="-L$OPENSSL_ROOT/lib" --prefix="$CURRENT_DIR/python"
+./configure MACOSX_DEPLOYMENT_TARGET=10.11 CPPFLAGS="-I$OPENSSL_ROOT/include" LDFLAGS="-L$OPENSSL_ROOT/lib" --with-openssl="$OPENSSL_ROOT" --prefix="$CURRENT_DIR/python"
26
large_echo "Build Python"
27
make altinstall
0 commit comments