From 46aaaa592657a32f4dd220693301062dbff665df Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Wed, 13 Aug 2008 19:59:21 +0000 Subject: Do not special-case for mingw32: compiler detection takes care of that now. --- numpy/distutils/command/scons.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'numpy/distutils/command/scons.py') 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] -- cgit v1.2.1