We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bb78f6 commit b148822Copy full SHA for b148822
common/install_cpython.sh
@@ -40,7 +40,7 @@ function do_cpython_build {
40
mkdir -p ${prefix}/lib
41
42
# -Wformat added for https://bugs.python.org/issue17547 on Python 2.6
43
- if [[ -z ${WITH_OPENSSL} ]]; then
+ if [[ -z "${WITH_OPENSSL+x}" ]]; then
44
CFLAGS="-Wformat" ./configure --prefix=${prefix} --disable-shared $unicode_flags > /dev/null
45
else
46
CFLAGS="-Wformat" ./configure --prefix=${prefix} --with-openssl=${WITH_OPENSSL} --with-openssl-rpath=auto --disable-shared $unicode_flags > /dev/null
0 commit comments