diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-13 19:23:16 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-13 19:23:16 (GMT) |
commit | 0a0e5832590f60371208f96d0e5d43876025960c (patch) | |
tree | 4ea529dda675efb29428792c820e09feef00db66 /Lib/distutils | |
parent | 2f9ca29d106779d960bf8680ec597ffce5e25d66 (diff) | |
download | cpython-0a0e5832590f60371208f96d0e5d43876025960c.zip cpython-0a0e5832590f60371208f96d0e5d43876025960c.tar.gz cpython-0a0e5832590f60371208f96d0e5d43876025960c.tar.bz2 |
Fixed bug #1613: Makefile's VPATH feature is broken
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/sysconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py index 2ea7c78..aead1a1 100644 --- a/Lib/distutils/sysconfig.py +++ b/Lib/distutils/sysconfig.py @@ -32,7 +32,7 @@ if os.name == "nt" and "pcbuild" in project_base[-8:].lower(): # building an extension with an un-installed Python, so we use # different (hard-wired) directories. python_build = os.path.isfile(os.path.join(project_base, "Modules", - "Setup.dist")) + "Setup.local")) def get_python_version(): |