From 12cfaa0bf758a78d854e917f357ac2913d4e73c6 Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Fri, 1 Aug 2008 06:04:24 +0000 Subject: Handle python version in prepare_bootstrap script. --- tools/win32build/doall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/win32build/doall.py') diff --git a/tools/win32build/doall.py b/tools/win32build/doall.py index 33a374c72..19009d42b 100644 --- a/tools/win32build/doall.py +++ b/tools/win32build/doall.py @@ -4,7 +4,7 @@ import os PYVER = "2.5" # Bootstrap -subprocess.check_call(['python', 'prepare_bootstrap.py']) +subprocess.check_call(['python', 'prepare_bootstrap.py', '-p', PYVER]) # Build binaries subprocess.check_call(['python', 'build.py', '-p', PYVER], cwd = 'bootstrap-%s' % PYVER) -- cgit v1.2.3