[Python-checkins] vsts: Avoid conflict with Homebrew Python (GH-8430)
INADA Naoki
webhook-mailer at python.org
Fri Jul 27 03:52:32 EDT 2018
https://github.com/python/cpython/commit/3e7d18a54b9243b9652c9ddab87c2b9153dc365f
commit: 3e7d18a54b9243b9652c9ddab87c2b9153dc365f
branch: master
author: INADA Naoki <methane at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018年07月27日T16:52:24+09:00
summary:
vsts: Avoid conflict with Homebrew Python (GH-8430)
/usr/local/lib/pythonX.Y is used by Homebrew's Python already.
files:
M .vsts/macos-buildbot.yml
M .vsts/macos-pr.yml
diff --git a/.vsts/macos-buildbot.yml b/.vsts/macos-buildbot.yml
index 8a4f6ba8cb8b..d9b2297283b0 100644
--- a/.vsts/macos-buildbot.yml
+++ b/.vsts/macos-buildbot.yml
@@ -24,7 +24,7 @@ steps:
clean: true
fetchDepth: 5
-- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl
+- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-vsts
displayName: 'Configure CPython (debug)'
- script: make -s -j4
diff --git a/.vsts/macos-pr.yml b/.vsts/macos-pr.yml
index 8a4f6ba8cb8b..d9b2297283b0 100644
--- a/.vsts/macos-pr.yml
+++ b/.vsts/macos-pr.yml
@@ -24,7 +24,7 @@ steps:
clean: true
fetchDepth: 5
-- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl
+- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-vsts
displayName: 'Configure CPython (debug)'
- script: make -s -j4
More information about the Python-checkins
mailing list