[Python-checkins] vsts: Avoid conflict with Homebrew Python (GH-8430)

Miss Islington (bot) webhook-mailer at python.org
Fri Jul 27 04:05:39 EDT 2018


https://github.com/python/cpython/commit/0964aac446d1ddf9fb61ddeed3b8586f2a619d2e
commit: 0964aac446d1ddf9fb61ddeed3b8586f2a619d2e
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-07-27T01:05:35-07:00
summary:

vsts: Avoid conflict with Homebrew Python (GH-8430)


/usr/local/lib/pythonX.Y is used by Homebrew's Python already.
(cherry picked from commit 3e7d18a54b9243b9652c9ddab87c2b9153dc365f)

Co-authored-by: INADA Naoki <methane at users.noreply.github.com>

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