Skip to content

Commit 777cdd9

Browse files
authored
bpo-34177: vsts: Avoid conflict with Homebrew Python (GH-8430)
/usr/local/lib/pythonX.Y is used by Homebrew's Python already. (cherry picked from commit 3e7d18a)
1 parent 146ba43 commit 777cdd9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.vsts/macos-buildbot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ steps:
2424
clean: true
2525
fetchDepth: 5
2626

27-
- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl
27+
- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-vsts
2828
displayName: 'Configure CPython (debug)'
2929

3030
- script: make -s -j4

.vsts/macos-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ steps:
2424
clean: true
2525
fetchDepth: 5
2626

27-
- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl
27+
- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-vsts
2828
displayName: 'Configure CPython (debug)'
2929

3030
- script: make -s -j4

0 commit comments

Comments
 (0)