diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-11-15 00:15:39 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-11-15 00:15:39 (GMT) |
commit | e044dfa22b4d4cef982fbf01f8f8f6d971381148 (patch) | |
tree | 9cc2ca08a59aa6134387ad29c45b2456574c36e0 /PCbuild | |
parent | 63e6a7c3f4b72db95fff8fdac60bfcb8f1fd56e5 (diff) | |
parent | 4468bed2fcb29e614847b8576b36344c99f3552e (diff) | |
download | cpython-e044dfa22b4d4cef982fbf01f8f8f6d971381148.zip cpython-e044dfa22b4d4cef982fbf01f8f8f6d971381148.tar.gz cpython-e044dfa22b4d4cef982fbf01f8f8f6d971381148.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%^
|