diff options
| author | ?ric Araujo <merwok@netwok.org> | 2010-12-15 21:53:23 +0100 |
|---|---|---|
| committer | ?ric Araujo <merwok@netwok.org> | 2010-12-15 21:53:23 +0100 |
| commit | 6e765991cace8cc06e2a9aac7192b8c198f2765c (patch) | |
| tree | c748a05564051dd8bd245c88a0cc750f874bce39 /distutils2/command/build_ext.py | |
| parent | 89dc507eb60193dc32f132cbf17f91e7cd2cd4ff (diff) | |
| download | disutils2-6e765991cace8cc06e2a9aac7192b8c198f2765c.tar.gz | |
Fix build_ext with VS 8.0. Patch by Hirokazu Yamamoto (#9558).
Diffstat (limited to 'distutils2/command/build_ext.py')
| -rw-r--r-- | distutils2/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils2/command/build_ext.py b/distutils2/command/build_ext.py index 5302faa..6575e55 100644 --- a/distutils2/command/build_ext.py +++ b/distutils2/command/build_ext.py @@ -257,7 +257,7 @@ class build_ext(Command): elif MSVC_VERSION == 8: self.library_dirs.append(os.path.join(sys.exec_prefix, - 'PC', 'VS8.0', 'win32release')) + 'PC', 'VS8.0')) elif MSVC_VERSION == 7: self.library_dirs.append(os.path.join(sys.exec_prefix, 'PC', 'VS7.1')) |
