[Python-checkins] bpo-37396, PCbuild: Include "_d" in "Killing any running ..." message (GH-14370)
Victor Stinner
webhook-mailer at python.org
Tue Jun 25 07:37:22 EDT 2019
https://github.com/python/cpython/commit/49032fa7e1cc1b6dc12b898daac24b75bae7572c
commit: 49032fa7e1cc1b6dc12b898daac24b75bae7572c
branch: 2.7
author: Victor Stinner <vstinner at redhat.com>
committer: GitHub <noreply at github.com>
date: 2019年06月25日T13:37:16+02:00
summary:
bpo-37396, PCbuild: Include "_d" in "Killing any running ..." message (GH-14370)
Add $(PyDebugExt) in "Killing any running python$(PyDebugExt).exe
instances...".
files:
M PCbuild/pyproject.props
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
index 10b129803484..08565465694b 100644
--- a/PCbuild/pyproject.props
+++ b/PCbuild/pyproject.props
@@ -127,7 +127,7 @@ foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcesses
</UsingTask>
<Target Name="KillPython" BeforeTargets="PrepareForBuild" Condition="'$(KillPython)' == 'true'">
- <Message Text="Killing any running python.exe instances..." Importance="high" />
+ <Message Text="Killing any running python$(PyDebugExt).exe instances..." Importance="high" />
<KillPython FileName="$(OutDir)python$(PyDebugExt).exe" />
</Target>
More information about the Python-checkins
mailing list