summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-08-13 19:59:21 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-08-13 19:59:21 +0000
commit46aaaa592657a32f4dd220693301062dbff665df (patch)
tree6105d42fcc0ffb568a8bc54a4d351d0c6399bad5 /numpy
parent11a69c23a29916f0d0721108e34d758e72d56b41 (diff)
downloadnumpy-46aaaa592657a32f4dd220693301062dbff665df.tar.gz
Do not special-case for mingw32: compiler detection takes care of that now.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/distutils/command/scons.py2
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]