Skip to content

Commit

Permalink
vsts: Avoid conflict with Homebrew Python (GH-8430)
Browse files Browse the repository at this point in the history
/usr/local/lib/pythonX.Y is used by Homebrew's Python already.
(cherry picked from commit 3e7d18a)

Co-authored-by: INADA Naoki <methane@users.noreply.github.com>
  • Loading branch information
miss-islington and methane authored Jul 27, 2018
1 parent 21ed29a commit 0964aac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vsts/macos-buildbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .vsts/macos-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0964aac

Please sign in to comment.