diff options
author | Brian Curtin <brian@python.org> | 2012-05-14 03:45:57 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2012-05-14 03:45:57 (GMT) |
commit | 6d7c9f329761a8a1c9c3019ee1af8aeda2c69fde (patch) | |
tree | 1340f0ef58cf1b5f00960e8524c8f693970e1d9a /Tools/buildbot/clean.bat | |
parent | f6b1b9b2f3a2501592cb4defe1c034fdd1e6d0db (diff) | |
download | cpython-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.bat | 4 |
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 .. |