diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-05-18 20:17:48 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-05-18 20:17:48 +0000 |
commit | 6f82e1e9c704daaf398015ecc20892d89e56b259 (patch) | |
tree | 7c3d04682a4dcd7ea50490a1e4cac08f3cf983a8 /numpy/distutils/command/build_clib.py | |
parent | 571f16714fe9c2c744c6563d495dd0aaa47a843b (diff) | |
download | numpy-6f82e1e9c704daaf398015ecc20892d89e56b259.tar.gz |
unify config_fc, build_clib, build_ext commands --fcompiler options so that --fcompiler can be specified only once in a command line
Diffstat (limited to 'numpy/distutils/command/build_clib.py')
-rw-r--r-- | numpy/distutils/command/build_clib.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/numpy/distutils/command/build_clib.py b/numpy/distutils/command/build_clib.py index fd4d41cde..c3d41fea3 100644 --- a/numpy/distutils/command/build_clib.py +++ b/numpy/distutils/command/build_clib.py @@ -29,11 +29,7 @@ class build_clib(old_build_clib): def initialize_options(self): old_build_clib.initialize_options(self) self.fcompiler = None - - def finalize_options(self): - old_build_clib.finalize_options(self) - self.set_undefined_options('build_ext', - ('fcompiler', 'fcompiler')) + return def have_f_sources(self): for (lib_name, build_info) in self.libraries: |