[Python-checkins] cpython (3.5): Fixes unnecessary rebuild when building Windows releases with PGO

steve.dower python-checkins at python.org
Tue May 17 11:58:37 EDT 2016


https://hg.python.org/cpython/rev/32a202dc9ddf
changeset:   101403:32a202dc9ddf
branch:      3.5
parent:      101401:d13999a6be8c
user:        Steve Dower <steve.dower at microsoft.com>
date:        Tue May 17 08:57:53 2016 -0700
summary:
  Fixes unnecessary rebuild when building Windows releases with PGO

files:
  Tools/msi/buildrelease.bat |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Tools/msi/buildrelease.bat b/Tools/msi/buildrelease.bat
--- a/Tools/msi/buildrelease.bat
+++ b/Tools/msi/buildrelease.bat
@@ -168,7 +168,7 @@
             "%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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list