diff options
author | David Cournapeau <cournape@gmail.com> | 2008-05-20 08:35:01 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-05-20 08:35:01 +0000 |
commit | 87fddf4db1ea174df3428685baeb30586a30541b (patch) | |
tree | 233e8618d85a82f5a864876a051711025c6df086 | |
parent | 04b163d4a1c352562f1bb5988d5e267ea7bb08bd (diff) | |
download | numpy-87fddf4db1ea174df3428685baeb30586a30541b.tar.gz |
Fix typo when passing bootstrapping option to scons.
-rw-r--r-- | numpy/distutils/command/scons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/scons.py b/numpy/distutils/command/scons.py index ec52205cf..1575114a1 100644 --- a/numpy/distutils/command/scons.py +++ b/numpy/distutils/command/scons.py @@ -380,7 +380,7 @@ class scons(old_build_ext): elif int(self.silent) == 3: cmd.append('-s') cmd.append('silent=%d' % int(self.silent)) - cmd.append('boostrapping=%d' % bootstrap) + cmd.append('bootstrapping=%d' % bootstrap) cmdstr = ' '.join(cmd) if int(self.silent) < 1: log.info("Executing scons command (pkg is %s): %s ", pkg_name, cmdstr) |