From 59846ca9b16f0f7b7a11339343797fdac07f5aa4 Mon Sep 17 00:00:00 2001 From: Jens Hedegaard Nielsen Date: Tue, 13 Mar 2018 15:00:23 +0100 Subject: [PATCH] Set openssl PKG_CONFIG_PATH for python 3.7 (#1117) --- plugins/python-build/bin/python-build | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index 99c6ab44..e94f021a 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -1487,6 +1487,7 @@ use_homebrew_openssl() { local ssldir="$(brew --prefix openssl 2>/dev/null || true)" if [ -d "$ssldir" ]; then echo "python-build: use openssl from homebrew" + export PKG_CONFIG_PATH="$ssldir/lib/pkgconfig/:${PKG_CONFIG_PATH}" export CPPFLAGS="-I$ssldir/include ${CPPFLAGS}" export LDFLAGS="-L$ssldir/lib ${LDFLAGS}" else