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/ccompiler.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/ccompiler.py')
-rw-r--r-- | scipy_distutils/ccompiler.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scipy_distutils/ccompiler.py b/scipy_distutils/ccompiler.py index 3fdc00922..0ef868930 100644 --- a/scipy_distutils/ccompiler.py +++ b/scipy_distutils/ccompiler.py @@ -20,8 +20,7 @@ def CCompiler_spawn(self, cmd, display=None): if type(display) is type([]): display = ' '.join(display) log.info(display) s,o = exec_command(cmd) - print s - print o + if os.name != 'posix': print s, o if s: if type(cmd) is type([]): cmd = ' '.join(cmd) |