Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6d7c9f3

Browse files
committed
Update the clean and MSI scripts for VS2010
1 parent f6b1b9b commit 6d7c9f3

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Tools/buildbot/buildmsi.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmd /c Tools\buildbot\external.bat
55
call "%VS100COMNTOOLS%vsvars32.bat"
66

77
@rem build Python
8-
vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32"
8+
msbuild /p:useenv=true PCbuild\pcbuild.sln /p:Configuration=Release /p:Platform=Win32
99

1010
@rem build the documentation
1111
bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp'

Tools/buildbot/clean-amd64.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ del /s Lib\*.pyc Lib\*.pyo
55
@echo Deleting test leftovers ...
66
rmdir /s /q build
77
cd PCbuild
8-
vcbuild /clean pcbuild.sln "Release|x64"
9-
vcbuild /clean pcbuild.sln "Debug|x64"
8+
msbuild /target:clean pcbuild.sln /p:Configuration=Release /p:PlatformTarget=x64
9+
msbuild /target:clean pcbuild.sln /p:Configuration=Debug /p:PlatformTarget=x64
1010
cd ..

Tools/buildbot/clean.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ del /s Lib\*.pyc Lib\*.pyo
55
@echo Deleting test leftovers ...
66
rmdir /s /q build
77
cd PCbuild
8-
vcbuild /clean pcbuild.sln "Release|Win32"
9-
vcbuild /clean pcbuild.sln "Debug|Win32"
8+
msbuild /target:clean pcbuild.sln /p:Configuration=Release /p:PlatformTarget=x86
9+
msbuild /target:clean pcbuild.sln /p:Configuration=Debug /p:PlatformTarget=x86
1010
cd ..

0 commit comments

Comments
 (0)