diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2018-07-27 07:52:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-27 07:52:24 (GMT) |
commit | 3e7d18a54b9243b9652c9ddab87c2b9153dc365f (patch) | |
tree | 29300aa7a8bf891e0693cf600d02f7a751ebb0b9 | |
parent | defcffdf86780e3a184ebb25dc9a7b807753d57a (diff) | |
download | cpython-3e7d18a54b9243b9652c9ddab87c2b9153dc365f.zip cpython-3e7d18a54b9243b9652c9ddab87c2b9153dc365f.tar.gz cpython-3e7d18a54b9243b9652c9ddab87c2b9153dc365f.tar.bz2 |
vsts: Avoid conflict with Homebrew Python (GH-8430)
/usr/local/lib/pythonX.Y is used by Homebrew's Python already.
-rw-r--r-- | .vsts/macos-buildbot.yml | 2 | ||||
-rw-r--r-- | .vsts/macos-pr.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.vsts/macos-buildbot.yml b/.vsts/macos-buildbot.yml index 8a4f6ba..d9b2297 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 8a4f6ba..d9b2297 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 |