Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 680190a commit ce9f5acCopy full SHA for ce9f5ac
1 file changed
numpy/distutils/command/scons.py
@@ -502,12 +502,12 @@ def run(self):
502
if self.scons_fcompiler:
503
cmd.append('f77_opt=%s' % self.scons_fcompiler)
504
if self.scons_fcompiler_path:
505
- cmd.append('f77_opt_path=%s' % protect_path(self.scons_fcompiler_path))
+ cmd.append('f77_opt_path=%s' % self.scons_fcompiler_path)
506
507
if self.scons_cxxcompiler:
508
cmd.append('cxx_opt=%s' % self.scons_cxxcompiler)
509
if self.scons_cxxcompiler_path:
510
- cmd.append('cxx_opt_path=%s' % protect_path(self.scons_cxxcompiler_path))
+ cmd.append('cxx_opt_path=%s' % self.scons_cxxcompiler_path)
511
512
cmd.append('include_bootstrap=%s' % dirl_to_str(get_numpy_include_dirs(sconscript)))
513
cmd.append('bypass=%s' % self.bypass)
0 commit comments