summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/scons.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-09-14 09:43:27 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-09-14 09:43:27 +0000
commit335aa25d249645a2e065f0cb37c34b6bcc0e6cbf (patch)
treebbb5a900f2f634a11f69412227c0133ae877ead9 /numpy/distutils/command/scons.py
parent5b15eb7bbe9d1b0b23fc3d9709ed2c311d069f9c (diff)
downloadnumpy-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.py6
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)))