diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-26 10:22:51 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2004-02-26 10:22:51 +0000 |
commit | 91cff85dbd02c76e6f99457691cb7d1b12c3483e (patch) | |
tree | 8eadd1730b7aa37af74db75a7b1e0f55bbd29abf /scipy_distutils/ccompiler.py | |
parent | 45c0b1e7f0cf7a08758d037d572b2330303f3f05 (diff) | |
download | numpy-91cff85dbd02c76e6f99457691cb7d1b12c3483e.tar.gz |
Added flavor info to fortran compilation message.
Diffstat (limited to 'scipy_distutils/ccompiler.py')
-rw-r--r-- | scipy_distutils/ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy_distutils/ccompiler.py b/scipy_distutils/ccompiler.py index fcd6f3c1c..ea2a0dbd6 100644 --- a/scipy_distutils/ccompiler.py +++ b/scipy_distutils/ccompiler.py @@ -54,7 +54,7 @@ def CCompiler_compile(self, sources, output_dir=None, macros=None, cc_args = self._get_cc_args(pp_opts, debug, extra_preargs) display = "compile options: '%s'" % (' '.join(cc_args)) if extra_postargs: - display += "extra: '%s'" % (' '.join(extra_postargs)) + display += "\nextra options: '%s'" % (' '.join(extra_postargs)) log.info(display) for obj, (src, ext) in build.items(): self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts) |