From 034e613a211f432abe3006d7f113ef3cfea86290 Mon Sep 17 00:00:00 2001 From: Yang Li <20695423+liyang85@users.noreply.github.com> Date: Tue, 2 May 2023 00:26:55 +0800 Subject: [PATCH] Remove an extra minus sign (dash), which causes the compilation to fail on CentOS 7. --- Common-build-problems.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common-build-problems.md b/Common-build-problems.md index 6da2b2e..3f00fab 100644 --- a/Common-build-problems.md +++ b/Common-build-problems.md @@ -205,7 +205,7 @@ E.g. (invocations that worked for various people): ```sh CPPFLAGS="$(pkg-config --cflags openssl11)" \ - LDFLAGS=-"$(pkg-config --libs openssl11)" \ + LDFLAGS="$(pkg-config --libs openssl11)" \ pyenv install -v 3.10.6 ```