Staging
v0.5.1
https://github.com/python/cpython
Revision e9a4de51ab5ba19d4b1295aadad0533eea394b0a authored by Martin v. Löwis on 04 September 2010, 22:12:46 UTC, committed by Martin v. Löwis on 04 September 2010, 22:12:46 UTC
1 parent 0049249
Raw File
Tip revision: e9a4de51ab5ba19d4b1295aadad0533eea394b0a authored by Martin v. Löwis on 04 September 2010, 22:12:46 UTC
Drop cabarc artifact.
Tip revision: e9a4de5
buildmsi.bat
@rem Used by the buildbot "buildmsi" step.

cmd /c Tools\buildbot\external.bat
@rem build release versions of things
call "%VS90COMNTOOLS%vsvars32.bat"

@rem build Python
vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32"

@rem build the documentation
bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp'
"%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\python26a3.hhp

@rem build the MSI file
cd PC
nmake /f icons.mak
cd ..\Tools\msi
del *.msi
nmake /f msisupport.mak
%HOST_PYTHON% msi.py

back to top