summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2018-06-27 17:55:51 +0200
committerStefan Behnel <stefan_ml@behnel.de>2018-06-27 17:55:51 +0200
commita4574fc30ed89b09eb1f229d00c602cb7a8c7498 (patch)
tree44525145dc0acdf1d4566bc0b071a1f80699dd1c
parent11c14e0ff10b089b614754d572e8d08bbd05fb67 (diff)
downloadpython-lxml-a4574fc30ed89b09eb1f229d00c602cb7a8c7498.tar.gz
Backed out changeset ff9850742604
Not linking against libz produces several problems with wheels.
-rw-r--r--setupinfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setupinfo.py b/setupinfo.py
index 0dc14918..2d3b2002 100644
--- a/setupinfo.py
+++ b/setupinfo.py
@@ -268,7 +268,7 @@ def libraries():
standard_libs = []
if 'linux' in sys.platform:
standard_libs.append('rt')
- if OPTION_STATIC:
+ if not OPTION_BUILD_LIBXML2XSLT:
standard_libs.append('z')
standard_libs.append('m')