diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2018-02-06 18:16:58 +0100 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2018-02-06 18:19:16 +0100 |
commit | e36797f6ea971bffe5cd55065e43e233644c3e0a (patch) | |
tree | 5d36d9f7cd0a410234c5a91e90ce360c377f7150 | |
parent | 05159327eb70a75bc876a2355f5f31c6d424c1d5 (diff) | |
download | pygobject-e36797f6ea971bffe5cd55065e43e233644c3e0a.tar.gz |
setup.py: remove wrong comment about share lib extenions in distutils
It just happened to work with MinGW Python3 as that is patched to use
.dll for Python extenions by default. Forcing a different extension
here is needed as distutils is targeted at building extensions and
not shared libs.
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -262,8 +262,8 @@ class build_tests(Command): compiler = new_compiler() customize_compiler(compiler) + if os.name == "nt": - # XXX: something broken with mingw python2 compiler.shared_lib_extension = ".dll" if sys.platform == "darwin": |