summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-02-03 14:34:18 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-02-03 14:34:18 (GMT)
commit3af3ecca92ca7b10b2c53c51166101267975f029 (patch)
tree0565ac992887f38039973e82759bb7b726477aef /Lib/distutils/command
parent63cdb867f0a16061fd888d03146d667a8dcbec64 (diff)
downloadcpython-3af3ecca92ca7b10b2c53c51166101267975f029.zip
cpython-3af3ecca92ca7b10b2c53c51166101267975f029.tar.gz
cpython-3af3ecca92ca7b10b2c53c51166101267975f029.tar.bz2
Fixed paths to Windows build directories in build_ext.py
Use vsbuild instead of devenv in build.bat and _bsddb.vcproj
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/build_ext.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index ecfa177..29d5668 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -182,13 +182,13 @@ class build_ext (Command):
self.include_dirs.append(os.path.join(sys.exec_prefix, 'PC'))
if MSVC_VERSION == 9:
self.library_dirs.append(os.path.join(sys.exec_prefix,
- 'PCBuild9'))
+ 'PCbuild'))
elif MSVC_VERSION == 8:
self.library_dirs.append(os.path.join(sys.exec_prefix,
- 'PCBuild8', 'win32release'))
+ 'PC', 'VS8.0', 'win32release'))
else:
self.library_dirs.append(os.path.join(sys.exec_prefix,
- 'PCBuild'))
+ 'PC', 'VS7.1'))
# OS/2 (EMX) doesn't support Debug vs Release builds, but has the
# import libraries in its "Config" subdirectory