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 | |
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')
-rw-r--r-- | Tools/buildbot/buildmsi.bat | 2 | ||||
-rw-r--r-- | Tools/buildbot/clean-amd64.bat | 4 | ||||
-rw-r--r-- | Tools/buildbot/clean.bat | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/Tools/buildbot/buildmsi.bat b/Tools/buildbot/buildmsi.bat index 7e59b54..ae93e67 100644 --- a/Tools/buildbot/buildmsi.bat +++ b/Tools/buildbot/buildmsi.bat @@ -5,7 +5,7 @@ cmd /c Tools\buildbot\external.bat call "%VS100COMNTOOLS%vsvars32.bat" @rem build Python -vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32" +msbuild /p:useenv=true PCbuild\pcbuild.sln /p:Configuration=Release /p:Platform=Win32 @rem build the documentation bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp' diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat index 7b612fe..24660af 100644 --- a/Tools/buildbot/clean-amd64.bat +++ b/Tools/buildbot/clean-amd64.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|x64" -vcbuild /clean pcbuild.sln "Debug|x64" +msbuild /target:clean pcbuild.sln /p:Configuration=Release /p:PlatformTarget=x64 +msbuild /target:clean pcbuild.sln /p:Configuration=Debug /p:PlatformTarget=x64 cd .. 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 .. |