summaryrefslogtreecommitdiff
path: root/numpy/distutils/command
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-09-09 00:49:49 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-09-09 00:49:49 +0000
commit680190a475b66b947dc906f76700990acd054498 (patch)
treef62c8b8c38787cd6d40264078271f4073edc333d /numpy/distutils/command
parent2d078a1432687fab8c0626ed22b518b688950313 (diff)
downloadnumpy-680190a475b66b947dc906f76700990acd054498.tar.gz
Tell scons whether we are in bypass mode or not.
Diffstat (limited to 'numpy/distutils/command')
-rw-r--r--numpy/distutils/command/scons.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/distutils/command/scons.py b/numpy/distutils/command/scons.py
index 69721fb6a..fef6b3e60 100644
--- a/numpy/distutils/command/scons.py
+++ b/numpy/distutils/command/scons.py
@@ -510,6 +510,7 @@ class scons(old_build_ext):
cmd.append('cxx_opt_path=%s' % protect_path(self.scons_cxxcompiler_path))
cmd.append('include_bootstrap=%s' % dirl_to_str(get_numpy_include_dirs(sconscript)))
+ cmd.append('bypass=%s' % self.bypass)
if self.silent:
if int(self.silent) == 2:
cmd.append('-Q')