diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-11-15 00:13:56 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-11-15 00:13:56 (GMT) |
commit | 4468bed2fcb29e614847b8576b36344c99f3552e (patch) | |
tree | 73bb85283ae1ddd5104d8a529459b34af1457948 /PCbuild | |
parent | 6bf87d3fce619632c3949dd61cd35bcf8e032760 (diff) | |
download | cpython-4468bed2fcb29e614847b8576b36344c99f3552e.zip cpython-4468bed2fcb29e614847b8576b36344c99f3552e.tar.gz cpython-4468bed2fcb29e614847b8576b36344c99f3552e.tar.bz2 |
Issue #28573: Avoid setting up env too many times during build
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/build.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/build.bat b/PCbuild/build.bat index 88b1f06..ffcc197 100644 --- a/PCbuild/build.bat +++ b/PCbuild/build.bat @@ -120,9 +120,9 @@ if "%do_pgo%"=="true" ( @echo off
call :Kill
set conf=PGUpdate
+ set target=Build
)
goto Build
-
:Kill
echo on
msbuild "%dir%\pythoncore.vcxproj" /t:KillPython %verbose%^
|