Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 335aa25

Browse files
committed
Fix tab/space issue in scons command.
1 parent 5b15eb7 commit 335aa25

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

numpy/distutils/command/scons.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -494,19 +494,19 @@ def run(self):
494494

495495
if not self._bypass_distutils_cc:
496496
cmd.append('cc_opt=%s' % self.scons_compiler)
497-
if self.scons_compiler_path:
497+
if self.scons_compiler_path:
498498
cmd.append('cc_opt_path=%s' % self.scons_compiler_path)
499499
else:
500500
cmd.append('cc_opt=%s' % self.scons_compiler)
501501

502502
if self.scons_fcompiler:
503503
cmd.append('f77_opt=%s' % self.scons_fcompiler)
504-
if self.scons_fcompiler_path:
504+
if self.scons_fcompiler_path:
505505
cmd.append('f77_opt_path=%s' % self.scons_fcompiler_path)
506506

507507
if self.scons_cxxcompiler:
508508
cmd.append('cxx_opt=%s' % self.scons_cxxcompiler)
509-
if self.scons_cxxcompiler_path:
509+
if self.scons_cxxcompiler_path:
510510
cmd.append('cxx_opt_path=%s' % self.scons_cxxcompiler_path)
511511

512512
cmd.append('include_bootstrap=%s' % dirl_to_str(get_numpy_include_dirs(sconscript)))

0 commit comments

Comments
 (0)