diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2018-06-27 17:55:51 +0200 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2018-06-27 17:55:51 +0200 |
commit | a4574fc30ed89b09eb1f229d00c602cb7a8c7498 (patch) | |
tree | 44525145dc0acdf1d4566bc0b071a1f80699dd1c /setupinfo.py | |
parent | 11c14e0ff10b089b614754d572e8d08bbd05fb67 (diff) | |
download | python-lxml-a4574fc30ed89b09eb1f229d00c602cb7a8c7498.tar.gz |
Backed out changeset ff9850742604
Not linking against libz produces several problems with wheels.
Diffstat (limited to 'setupinfo.py')
-rw-r--r-- | setupinfo.py | 2 |
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') |