diff options
author | Gabi Davar <grizzly.nyo@gmail.com> | 2015-04-13 20:33:26 +0300 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-10-16 08:12:19 -0600 |
commit | e149fac25eefcc93c821ea5cca261aa55abd1f7f (patch) | |
tree | 62d2c93dec14c7cb69ea09403c9287a6be5561dd /numpy/distutils/ccompiler.py | |
parent | 972dbd00152aaec53369fc82913286a0f93b5ca6 (diff) | |
download | numpy-e149fac25eefcc93c821ea5cca261aa55abd1f7f.tar.gz |
LIBPATH with spaces is now supported Python 2.7+ and Win32
Diffstat (limited to 'numpy/distutils/ccompiler.py')
-rw-r--r-- | numpy/distutils/ccompiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py index a61d21029..b5970d76f 100644 --- a/numpy/distutils/ccompiler.py +++ b/numpy/distutils/ccompiler.py @@ -617,8 +617,8 @@ ccompiler.gen_lib_options = gen_lib_options # Also fix up the various compiler modules, which do # from distutils.ccompiler import gen_lib_options # Don't bother with mwerks, as we don't support Classic Mac. -for _cc in ['msvc', 'bcpp', 'cygwinc', 'emxc', 'unixc']: - _m = sys.modules.get('distutils.'+_cc+'compiler') +for _cc in ['msvc9', 'msvc', 'bcpp', 'cygwinc', 'emxc', 'unixc']: + _m = sys.modules.get('distutils.' + _cc + 'compiler') if _m is not None: setattr(_m, 'gen_lib_options', gen_lib_options) |