diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-05-17 15:57:53 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-05-17 15:57:53 (GMT) |
commit | c710826ef211cf981543eeebe9b9203bd89e02da (patch) | |
tree | d70ab1cde64a12eb85f96711e477b58c50d66b4c /Tools | |
parent | 54044d605fee2867bbfe18610fc0b8120a4ff239 (diff) | |
download | cpython-c710826ef211cf981543eeebe9b9203bd89e02da.zip cpython-c710826ef211cf981543eeebe9b9203bd89e02da.tar.gz cpython-c710826ef211cf981543eeebe9b9203bd89e02da.tar.bz2 |
Fixes unnecessary rebuild when building Windows releases with PGO
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/buildrelease.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/buildrelease.bat b/Tools/msi/buildrelease.bat index fc7cb9f..2eae07a 100644 --- a/Tools/msi/buildrelease.bat +++ b/Tools/msi/buildrelease.bat @@ -168,7 +168,7 @@ if not "%SKIPBUILD%" EQU "1" ( "%BUILD%python.exe" %PGO%
)
- @call "%PCBUILD%build.bat" -e -p %BUILD_PLAT% -c PGUpdate -t %TARGET% %CERTOPTS%
+ @call "%PCBUILD%build.bat" -e -p %BUILD_PLAT% -c PGUpdate -t Build %CERTOPTS%
)
@if errorlevel 1 exit /B
@echo off
|