diff options
author | Robert Kern <robert.kern@gmail.com> | 2006-02-09 19:04:18 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2006-02-09 19:04:18 +0000 |
commit | ddf6e61b8c92311ec3215252aa117fd7fdaaf8ef (patch) | |
tree | c608d78a9dc87187714f89d5f7509c6b40095352 /numpy/distutils/command/build_ext.py | |
parent | e5e72a41b507f9d18564aa881c9482c76d399c45 (diff) | |
download | numpy-ddf6e61b8c92311ec3215252aa117fd7fdaaf8ef.tar.gz |
Fixed join() -> os.path.join()
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r-- | numpy/distutils/command/build_ext.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index 735daa6ed..028f3d7f7 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -99,6 +99,7 @@ class build_ext (old_build_ext): self.fcompiler.customize_cmd(self) self.fcompiler.show_customization() else: + print self.fcompiler.get_version() self.warn('fcompiler=%s is not available.' % (self.fcompiler.compiler_type)) self.fcompiler = None |