diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-14 09:43:57 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-14 09:43:57 +0000 |
commit | 2f6604a638ca0c96f426a2010a0dc8e6e6e2c93f (patch) | |
tree | 63398972a093f5844ba36a90b831bad95fcc139b /numpy/distutils/command/scons.py | |
parent | fedf4572692c2065b7c719ed6f9196999b185424 (diff) | |
download | numpy-2f6604a638ca0c96f426a2010a0dc8e6e6e2c93f.tar.gz |
Further whitespace/tab fixes.
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 868632c30..e2cc47613 100644 --- a/numpy/distutils/command/scons.py +++ b/numpy/distutils/command/scons.py @@ -462,19 +462,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: - cmd.append('cc_opt_path=%s' % 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: - cmd.append('f77_opt_path=%s' % 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: - cmd.append('cxx_opt_path=%s' % 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))) cmd.append('bypass=%s' % self.bypass) |