[Python-checkins] r59766 - python/trunk/Tools/buildbot/buildmsi.bat

martin.v.loewis python-checkins at python.org
Sun Jan 6 11:09:49 CET 2008


Author: martin.v.loewis
Date: Sun Jan  6 11:09:48 2008
New Revision: 59766

Modified:
   python/trunk/Tools/buildbot/buildmsi.bat
Log:
Use vcbuild for VS 2009.


Modified: python/trunk/Tools/buildbot/buildmsi.bat
==============================================================================
--- python/trunk/Tools/buildbot/buildmsi.bat	(original)
+++ python/trunk/Tools/buildbot/buildmsi.bat	Sun Jan  6 11:09:48 2008
@@ -4,12 +4,12 @@
 @rem build release versions of things
 call "%VS90COMNTOOLS%vsvars32.bat"
 if not exist ..\db-4.4.20\build_win32\release\libdb44s.lib (
-   devenv ..\db-4.4.20\build_win32\Berkeley_DB.sln /build Release /project db_static
+  vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Release /project db_static
 )
 
 @rem build Python
 cmd /q/c Tools\buildbot\kill_python.bat
-devenv.com /useenv /build Release PCbuild\pcbuild.sln
+vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32"
 
 @rem build the documentation
 bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp'


More information about the Python-checkins mailing list