From c184439a78a4b63f0e9bd046247d9a4b128f1658 Mon Sep 17 00:00:00 2001 From: "James L. Morton" Date: Tue, 25 Apr 2023 22:51:33 -0500 Subject: [PATCH] The existing method did not work. See discussion: https://github.com/pyenv/pyenv/issues/2416 --- Common-build-problems.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Common-build-problems.md b/Common-build-problems.md index 836f096..6da2b2e 100644 --- a/Common-build-problems.md +++ b/Common-build-problems.md @@ -204,8 +204,8 @@ E.g. (invocations that worked for various people): * CentOS 7 with OpenSSL 1.1.1: ```sh - CPPFLAGS=-I/usr/include/openssl11 \ - LDFLAGS=-L/usr/lib64/openssl11 \ + CPPFLAGS="$(pkg-config --cflags openssl11)" \ + LDFLAGS=-"$(pkg-config --libs openssl11)" \ pyenv install -v 3.10.6 ```