summaryrefslogtreecommitdiffstats
path: root/Tools/buildbot/clean.bat
diff options
context:
space:
mode:
authorBrian Curtin <brian@python.org>2012-05-14 03:45:57 (GMT)
committerBrian Curtin <brian@python.org>2012-05-14 03:45:57 (GMT)
commit6d7c9f329761a8a1c9c3019ee1af8aeda2c69fde (patch)
tree1340f0ef58cf1b5f00960e8524c8f693970e1d9a /Tools/buildbot/clean.bat
parentf6b1b9b2f3a2501592cb4defe1c034fdd1e6d0db (diff)
downloadcpython-6d7c9f329761a8a1c9c3019ee1af8aeda2c69fde.zip
cpython-6d7c9f329761a8a1c9c3019ee1af8aeda2c69fde.tar.gz
cpython-6d7c9f329761a8a1c9c3019ee1af8aeda2c69fde.tar.bz2
Update the clean and MSI scripts for VS2010
Diffstat (limited to 'Tools/buildbot/clean.bat')
-rw-r--r--Tools/buildbot/clean.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat
index 2c12c3e..cb6f99e 100644
--- a/Tools/buildbot/clean.bat
+++ b/Tools/buildbot/clean.bat
@@ -5,6 +5,6 @@ del /s Lib\*.pyc Lib\*.pyo
@echo Deleting test leftovers ...
rmdir /s /q build
cd PCbuild
-vcbuild /clean pcbuild.sln "Release|Win32"
-vcbuild /clean pcbuild.sln "Debug|Win32"
+msbuild /target:clean pcbuild.sln /p:Configuration=Release /p:PlatformTarget=x86
+msbuild /target:clean pcbuild.sln /p:Configuration=Debug /p:PlatformTarget=x86
cd ..