diff options
author | David Cournapeau <cournape@gmail.com> | 2008-07-28 04:20:37 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-07-28 04:20:37 +0000 |
commit | f1ff5f93a3b5a78ef87543c5b900c0e4f23b229e (patch) | |
tree | ac8826a7344293a9cd1f17b4fe0e962cbeb92ba5 /tools | |
parent | 619ae0cf87612cfdcb17eec00a44798c23b2fe49 (diff) | |
download | numpy-f1ff5f93a3b5a78ef87543c5b900c0e4f23b229e.tar.gz |
Build all ARCHS if arch arg not given to build script.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/win32build/build.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/win32build/build.py b/tools/win32build/build.py index 19441acc0..da4f0549e 100644 --- a/tools/win32build/build.py +++ b/tools/win32build/build.py @@ -107,10 +107,11 @@ if __name__ == '__main__': arch = opts.arch
pyver = opts.pyver
- if not arch:
- arch = "nosse"
if not pyver:
pyver = "2.5"
- build(arch, pyver)
- #for arch in SITECFG.keys():
- # build(arch, pyver)
+
+ if not arch:
+ for arch in SITECFG.keys():
+ build(arch, pyver)
+ else:
+ build(arch, pyver)
|