diff options
author | David Cournapeau <cournape@gmail.com> | 2008-07-28 05:25:04 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-07-28 05:25:04 +0000 |
commit | e3f63ef77b066b3f2636a78a10450dac4f4d478d (patch) | |
tree | f8e78972b58ab4a74a04a42c47fdd7ac046dce6b /tools/win32build/doall.py | |
parent | 20efcc4c8ec4a0789805b2467ad5a108b37c9468 (diff) | |
download | numpy-e3f63ef77b066b3f2636a78a10450dac4f4d478d.tar.gz |
Set build scripts to unix ff.
Diffstat (limited to 'tools/win32build/doall.py')
-rw-r--r-- | tools/win32build/doall.py | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/tools/win32build/doall.py b/tools/win32build/doall.py index 72a920ac3..33a374c72 100644 --- a/tools/win32build/doall.py +++ b/tools/win32build/doall.py @@ -1,13 +1,13 @@ -import subprocess
-import os
-
-PYVER = "2.5"
-
-# Bootstrap
-subprocess.check_call(['python', 'prepare_bootstrap.py'])
-
-# Build binaries
-subprocess.check_call(['python', 'build.py', '-p', PYVER], cwd = 'bootstrap-%s' % PYVER)
-
-# Build installer using nsis
-subprocess.check_call(['makensis', 'numpy-superinstaller.nsi'], cwd = 'bootstrap-%s' % PYVER)
+import subprocess +import os + +PYVER = "2.5" + +# Bootstrap +subprocess.check_call(['python', 'prepare_bootstrap.py']) + +# Build binaries +subprocess.check_call(['python', 'build.py', '-p', PYVER], cwd = 'bootstrap-%s' % PYVER) + +# Build installer using nsis +subprocess.check_call(['makensis', 'numpy-superinstaller.nsi'], cwd = 'bootstrap-%s' % PYVER) |