~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/win32/buildout-templates/bin/build-installer.bat.in

  • Committer: Sidnei da Silva
  • Date: 2009-06-08 18:45:10 UTC
  • mto: (4531.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4532.
  • Revision ID: sidnei.da.silva@canonical.com-20090608184510-fxq88fklgcxb6d2g
- Call 'make docs'

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
FOR /f "tokens=1 delims= " %%G IN ('%TORTOISE_OVERLAYS_MSI_X64_CMD%') DO set BASENAME=%%G
20
20
set TORTOISE_OVERLAYS_MSI_X64=${buildout:directory}/build/tortoise-overlays/%BASENAME%
21
21
 
 
22
FOR /f "tokens=1 delims= " %%G IN ('cygpath %PYTHON%') DO set CYG_PYTHON=%%G
 
23
 
22
24
%PYTHON% %ROOT%/ostools.py remove %RELEASE%
23
25
@if %ERRORLEVEL% NEQ 0 (set BUILD_ERROR=%ERRORLEVEL%) & goto End
24
26
 
49
51
@if %ERRORLEVEL% NEQ 0 (set BUILD_ERROR=%ERRORLEVEL%) & goto End
50
52
 
51
53
cd %RELEASE%
 
54
make docs PYTHON=%CYG_PYTHON%
 
55
@if %ERRORLEVEL% NEQ 0 (set BUILD_ERROR=%ERRORLEVEL%) & goto End
 
56
 
52
57
%PYTHON% setup.py build_ext -i
53
58
@if %ERRORLEVEL% NEQ 0 (set BUILD_ERROR=%ERRORLEVEL%) & goto End
54
59