summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index d540bfc..fc68172 100644
--- a/setup.py
+++ b/setup.py
@@ -65,8 +65,8 @@ class PyBuildExt(build_ext):
# with Modules/ and adding Python's include directory to the path.
(srcdir,) = sysconfig.get_config_vars('srcdir')
- #
- moddir = os.path.join(os.getcwd(), 'Modules', srcdir)
+ # Figure out the location of the source code for extension modules
+ moddir = os.path.join(os.getcwd(), srcdir, 'Modules')
moddir = os.path.normpath(moddir)
srcdir, tail = os.path.split(moddir)
srcdir = os.path.normpath(srcdir)