~ubuntu-branches/ubuntu/maverick/python3.1/maverick

« back to all changes in this revision

Viewing changes to Tools/buildbot/buildmsi.bat

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-03-23 00:01:27 UTC
  • Revision ID: james.westby@ubuntu.com-20090323000127-5fstfxju4ufrhthq
Tags: upstream-3.1~a1+20090322
ImportĀ upstreamĀ versionĀ 3.1~a1+20090322

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@rem Used by the buildbot "buildmsi" step.
 
2
 
 
3
cmd /c Tools\buildbot\external.bat
 
4
@rem build release versions of things
 
5
call "%VS90COMNTOOLS%vsvars32.bat"
 
6
 
 
7
@rem build Python
 
8
vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32"
 
9
 
 
10
@rem build the documentation
 
11
bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp'
 
12
"%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\python26a3.hhp
 
13
 
 
14
@rem build the MSI file
 
15
cd PC
 
16
nmake /f icons.mak
 
17
cd ..\Tools\msi
 
18
del *.msi
 
19
nmake /f msisupport.mak
 
20
%HOST_PYTHON% msi.py
 
21