From fb989016e54d804201f28d84aea6968be355ba62 Mon Sep 17 00:00:00 2001 From: Frazer McLean Date: Wed, 27 Jul 2022 20:15:13 +0100 Subject: [PATCH] Fix brew prefix passed to configure for openssl@1.1 The brew install command was updated in #892, but the corresponding commands were not. --- getting-started/setup-building.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting-started/setup-building.rst b/getting-started/setup-building.rst index ba1707a08c..c59c1e544a 100644 --- a/getting-started/setup-building.rst +++ b/getting-started/setup-building.rst @@ -391,13 +391,13 @@ with **Homebrew**:: For Python 3.10 and newer:: $ PKG_CONFIG_PATH="$(brew --prefix tcl-tk)/lib/pkgconfig" \ - ./configure --with-pydebug --with-openssl=$(brew --prefix openssl) + ./configure --with-pydebug --with-openssl=$(brew --prefix openssl@1.1) For Python versions 3.9 through 3.7:: $ export PKG_CONFIG_PATH="$(brew --prefix tcl-tk)/lib/pkgconfig" $ ./configure --with-pydebug \ - --with-openssl=$(brew --prefix openssl) \ + --with-openssl=$(brew --prefix openssl@1.1) \ --with-tcltk-libs="$(pkg-config --libs tcl tk)" \ --with-tcltk-includes="$(pkg-config --cflags tcl tk)"