summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2018-02-06 18:16:58 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2018-02-06 18:19:16 +0100
commite36797f6ea971bffe5cd55065e43e233644c3e0a (patch)
tree5d36d9f7cd0a410234c5a91e90ce360c377f7150
parent05159327eb70a75bc876a2355f5f31c6d424c1d5 (diff)
downloadpygobject-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-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index e5129e01..0b174303 100755
--- a/setup.py
+++ b/setup.py
@@ -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":