From: Andrew M. Kuchling Date: Fri, 19 Jan 2001 02:50:34 +0000 (+0000) Subject: Revert a single line of my large change earlier today; this broke the ability X-Git-Tag: v2.1a1~135 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3d6e41d81427a8e2bdda9bf3994c2c0c00c19a6;p=python Revert a single line of my large change earlier today; this broke the ability to build in a subdirectory. The additional directory is unfortunately redundant when *not* building in a subdirectory, which is why I took it out. --- diff --git a/setup.py b/setup.py index 6d4b2bc172..919bc64cca 100644 --- a/setup.py +++ b/setup.py @@ -76,6 +76,7 @@ class PyBuildExt(build_ext): ext.sources = [ os.path.join(moddir, filename) for filename in ext.sources ] ext.include_dirs.append( '.' ) # to get config.h + ext.include_dirs.append( os.path.join(srcdir, './Include') ) # Try importing a module; if it's already been built statically, # don't build it here