diff options
author | Travis Vaught <travis@enthought.com> | 2004-03-17 21:23:21 +0000 |
---|---|---|
committer | Travis Vaught <travis@enthought.com> | 2004-03-17 21:23:21 +0000 |
commit | 208baf5040453401ffa6e26c8f48dd4e1917361a (patch) | |
tree | 92fa21ac3784208849a073a24165e4c6059c5bc8 /scipy_distutils/fcompiler.py | |
parent | 8957ad32bf04dc802ae86caa8bcf11233679e976 (diff) | |
download | numpy-208baf5040453401ffa6e26c8f48dd4e1917361a.tar.gz |
commented out call to recently commented out __get_cc_args
Diffstat (limited to 'scipy_distutils/fcompiler.py')
-rw-r--r-- | scipy_distutils/fcompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy_distutils/fcompiler.py b/scipy_distutils/fcompiler.py index 6a8dfeb67..a609e2512 100644 --- a/scipy_distutils/fcompiler.py +++ b/scipy_distutils/fcompiler.py @@ -501,7 +501,7 @@ class FCompiler(CCompiler): ext = os.path.splitext(src)[1] self.mkpath(os.path.dirname(obj)) build[obj] = src, ext - cc_args = self._get_cc_args(pp_opts, debug, extra_preargs) + cc_args = [] #self._get_cc_args(pp_opts, debug, extra_preargs) for obj, (src, ext) in build.items(): self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts) return objects |