10000 Fix brew prefix passed to configure for openssl@1.1 (#923) · python/devguide@f9ab9e4 · GitHub
[go: up one dir, main page]

Skip to content

Commit f9ab9e4

Browse files
authored
Fix brew prefix passed to configure for openssl@1.1 (#923)
The brew install command was updated in #892, but the corresponding commands were not.
1 parent 087d494 commit f9ab9e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

getting-started/setup-building.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,13 +391,13 @@ with **Homebrew**::
391391
For Python 3.10 and newer::
392392

393393
$ PKG_CONFIG_PATH="$(brew --prefix tcl-tk)/lib/pkgconfig" \
394-
./configure --with-pydebug --with-openssl=$(brew --prefix openssl)
394+
./configure --with-pydebug --with-openssl=$(brew --prefix openssl@1.1)
395395

396396
For Python versions 3.9 through 3.7::
397397

398398
$ export PKG_CONFIG_PATH="$(brew --prefix tcl-tk)/lib/pkgconfig"
399399
$ ./configure --with-pydebug \
400-
--with-openssl=$(brew --prefix openssl) \
400+
--with-openssl=$(brew --prefix openssl@1.1) \
401401
--with-tcltk-libs="$(pkg-config --libs tcl tk)" \
402402
--with-tcltk-includes="$(pkg-config --cflags tcl tk)"
403403

0 commit comments

Comments
 (0)
0