diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-09 00:49:49 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-09 00:49:49 +0000 |
commit | 680190a475b66b947dc906f76700990acd054498 (patch) | |
tree | f62c8b8c38787cd6d40264078271f4073edc333d /numpy/distutils/command | |
parent | 2d078a1432687fab8c0626ed22b518b688950313 (diff) | |
download | numpy-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.py | 1 |
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') |