diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-14 09:43:27 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-14 09:43:27 +0000 |
commit | 335aa25d249645a2e065f0cb37c34b6bcc0e6cbf (patch) | |
tree | bbb5a900f2f634a11f69412227c0133ae877ead9 /numpy/distutils/command/scons.py | |
parent | 5b15eb7bbe9d1b0b23fc3d9709ed2c311d069f9c (diff) | |
download | numpy-335aa25d249645a2e065f0cb37c34b6bcc0e6cbf.tar.gz |
Fix tab/space issue in scons command.
Diffstat (limited to 'numpy/distutils/command/scons.py')
-rw-r--r-- | numpy/distutils/command/scons.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/command/scons.py b/numpy/distutils/command/scons.py index bdae5bde3..91fcba153 100644 --- a/numpy/distutils/command/scons.py +++ b/numpy/distutils/command/scons.py @@ -494,19 +494,19 @@ class scons(old_build_ext): if not self._bypass_distutils_cc: cmd.append('cc_opt=%s' % self.scons_compiler) - if self.scons_compiler_path: + if self.scons_compiler_path: cmd.append('cc_opt_path=%s' % self.scons_compiler_path) else: cmd.append('cc_opt=%s' % self.scons_compiler) if self.scons_fcompiler: cmd.append('f77_opt=%s' % self.scons_fcompiler) - if self.scons_fcompiler_path: + if self.scons_fcompiler_path: cmd.append('f77_opt_path=%s' % self.scons_fcompiler_path) if self.scons_cxxcompiler: cmd.append('cxx_opt=%s' % self.scons_cxxcompiler) - if self.scons_cxxcompiler_path: + if self.scons_cxxcompiler_path: cmd.append('cxx_opt_path=%s' % self.scons_cxxcompiler_path) cmd.append('include_bootstrap=%s' % dirl_to_str(get_numpy_include_dirs(sconscript))) |