[Numpy-svn] r5207 - branches/cdavid/numpy/distutils/command

numpy-svn at scipy.org numpy-svn at scipy.org
Tue May 20 04:35:06 EDT 2008


Author: cdavid
Date: 2008-05-20 03:35:01 -0500 (Tue, 20 May 2008)
New Revision: 5207

Modified:
   branches/cdavid/numpy/distutils/command/scons.py
Log:
Fix typo when passing bootstrapping option to scons.

Modified: branches/cdavid/numpy/distutils/command/scons.py
===================================================================
--- branches/cdavid/numpy/distutils/command/scons.py	2008-05-20 08:17:27 UTC (rev 5206)
+++ branches/cdavid/numpy/distutils/command/scons.py	2008-05-20 08:35:01 UTC (rev 5207)
@@ -380,7 +380,7 @@
                 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)




More information about the Numpy-svn mailing list