diff options
author | Trent Nelson <trent.nelson@snakebite.org> | 2008-04-06 20:51:23 (GMT) |
---|---|---|
committer | Trent Nelson <trent.nelson@snakebite.org> | 2008-04-06 20:51:23 (GMT) |
commit | 5a4d66824adeeef2d4d4b1bb4cc6cc9645fae8a0 (patch) | |
tree | dc5efee482ee2e75f3795266730e4272081327a5 /Tools | |
parent | 28112d0cb608e5d2ef8820dce8100ee3c9bb1692 (diff) | |
download | cpython-5a4d66824adeeef2d4d4b1bb4cc6cc9645fae8a0.zip cpython-5a4d66824adeeef2d4d4b1bb4cc6cc9645fae8a0.tar.gz cpython-5a4d66824adeeef2d4d4b1bb4cc6cc9645fae8a0.tar.bz2 |
Don't run kill_python as part of the build process. Change the buildbots so they have to call it explicitly instead.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/buildbot/build-amd64.bat | 1 | ||||
-rw-r--r-- | Tools/buildbot/build.bat | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Tools/buildbot/build-amd64.bat b/Tools/buildbot/build-amd64.bat index 1d828eb..5175c62 100644 --- a/Tools/buildbot/build-amd64.bat +++ b/Tools/buildbot/build-amd64.bat @@ -2,4 +2,5 @@ cmd /c Tools\buildbot\external-amd64.bat call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 cmd /c Tools\buildbot\clean-amd64.bat +vcbuild /useenv PCbuild\kill_python.vcproj "Debug|x64" && PCbuild\amd64\kill_python_d.exe vcbuild PCbuild\pcbuild.sln "Debug|x64" diff --git a/Tools/buildbot/build.bat b/Tools/buildbot/build.bat index 6bac3ed..ab3ea7d 100644 --- a/Tools/buildbot/build.bat +++ b/Tools/buildbot/build.bat @@ -2,5 +2,6 @@ cmd /c Tools\buildbot\external.bat call "%VS90COMNTOOLS%vsvars32.bat" cmd /c Tools\buildbot\clean.bat +vcbuild /useenv PCbuild\kill_python.vcproj "Debug|Win32" && PCbuild\kill_python_d.exe vcbuild /useenv PCbuild\pcbuild.sln "Debug|Win32" |