summaryrefslogtreecommitdiff
path: root/numpy/distutils
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2007-06-12 20:06:18 +0000
committercookedm <cookedm@localhost>2007-06-12 20:06:18 +0000
commit448d3605ef33677fe360ee33cb237da1d5b24947 (patch)
tree612f91e07dff9d71370a5dac40d7d3dd8ffc1e26 /numpy/distutils
parent2dd0839fb8908d23a033e91f4836f0311fb946b4 (diff)
downloadnumpy-448d3605ef33677fe360ee33cb237da1d5b24947.tar.gz
add fdebug as distutils key in [config_fc] for compiler flags to use when
compiling Fortran in debug mode.
Diffstat (limited to 'numpy/distutils')
-rw-r--r--numpy/distutils/fcompiler/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/__init__.py b/numpy/distutils/fcompiler/__init__.py
index fd36b8526..abf2155a5 100644
--- a/numpy/distutils/fcompiler/__init__.py
+++ b/numpy/distutils/fcompiler/__init__.py
@@ -118,7 +118,7 @@ class FCompiler(CCompiler):
arch = ('flags.arch', 'FARCH', 'arch', flaglist),
arch_f77 = ('flags.arch_f77', None, None, flaglist),
arch_f90 = ('flags.arch_f90', None, None, flaglist),
- debug = ('flags.debug', 'FDEBUG', None, None, flaglist),
+ debug = ('flags.debug', 'FDEBUG', 'fdebug', None, flaglist),
debug_f77 = ('flags.debug_f77', None, None, flaglist),
debug_f90 = ('flags.debug_f90', None, None, flaglist),
flags = ('self.get_flags', 'FFLAGS', 'fflags', flaglist),