diff options
author | Travis Oliphant <oliphant@enthought.com> | 2004-03-04 23:04:48 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2004-03-04 23:04:48 +0000 |
commit | 1c5dfc8ed54322fb18a078879efb6f009757980f (patch) | |
tree | b7f0e766196b683046df79ae8a0995ecb196c09a /scipy_distutils/fcompiler.py | |
parent | fa4054de4e5f73ace598a555a194a3ffe35e923b (diff) | |
download | numpy-1c5dfc8ed54322fb18a078879efb6f009757980f.tar.gz |
Remove dummy cc_args from Fcompiler class so that include files get used for Fortan.
Diffstat (limited to 'scipy_distutils/fcompiler.py')
-rw-r--r-- | scipy_distutils/fcompiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scipy_distutils/fcompiler.py b/scipy_distutils/fcompiler.py index 6d85dab77..3ad723199 100644 --- a/scipy_distutils/fcompiler.py +++ b/scipy_distutils/fcompiler.py @@ -472,8 +472,8 @@ class FCompiler(CCompiler): def library_dir_option(self, dir): return "-L" + dir - def _get_cc_args(self, pp_opts, debug, extra_preargs): - return [] +# def _get_cc_args(self, pp_opts, debug, extra_preargs): +# return [] if sys.version[:3]<'2.3': def compile(self, sources, output_dir=None, macros=None, |