diff options
author | David Cournapeau <cournape@gmail.com> | 2008-08-13 19:59:21 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-08-13 19:59:21 +0000 |
commit | 46aaaa592657a32f4dd220693301062dbff665df (patch) | |
tree | 6105d42fcc0ffb568a8bc54a4d351d0c6399bad5 | |
parent | 11a69c23a29916f0d0721108e34d758e72d56b41 (diff) | |
download | numpy-46aaaa592657a32f4dd220693301062dbff665df.tar.gz |
Do not special-case for mingw32: compiler detection takes care of that now.
-rw-r--r-- | numpy/distutils/command/scons.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/distutils/command/scons.py b/numpy/distutils/command/scons.py index 60c840b13..5bfa2ea3f 100644 --- a/numpy/distutils/command/scons.py +++ b/numpy/distutils/command/scons.py @@ -96,8 +96,6 @@ def dist2sconscc(compiler): return 'msvc' elif compiler_type == 'intel': return 'intelc' - elif compiler_type == 'mingw32': - return 'mingw' else: return compiler.compiler[0] |