10000 change to static path · mxschmitt/python-versions@cdd1351 · GitHub
[go: up one dir, main page]

Skip to content

Commit cdd1351

Browse files
author
Dmitry Shibanov
committed
change to static path
1 parent 2aa5c75 commit cdd1351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builders/macos-python-builder.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ class macOSPythonBuilder : NixPythonBuilder {
4141
### Link to documentation (https://cpython-devguide.readthedocs.io/setup/#build-dependencies)
4242
Write-Host "openssl path: $(brew --prefix openssl)"
4343
if ($this.Version -lt "3.7.0") {
44-
$env:LDFLAGS = "-L$(brew --prefix openssl)/lib"
45-
$env:CFLAGS = "-I$(brew --prefix openssl)/include"
44+
$env:LDFLAGS = "-L/usr/local/opt/openssl@1.1/lib" #"-L$(brew --prefix openssl)/lib"
45+
$env:CFLAGS = "-I/usr/local/opt/openssl@1.1/include" #"-I$(brew --prefix openssl)/include"
4646
} else {
4747
$configureString += " --with-openssl=/usr/local/opt/openssl@1.1"
4848
}

0 commit comments

Comments
 (0)
0