]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-37396, PCbuild: Include "_d" in "Killing any running ..." message (GH-14370)
authorVictor Stinner <vstinner@redhat.com>
Tue, 25 Jun 2019 11:37:16 +0000 (13:37 +0200)
committerGitHub <noreply@github.com>
Tue, 25 Jun 2019 11:37:16 +0000 (13:37 +0200)
Add $(PyDebugExt) in "Killing any running python$(PyDebugExt).exe
instances...".

PCbuild/pyproject.props

index 10b129803484c5ccbf62a7c44c75f26914ced732..08565465694b74dac8df3e88ceae0cd9d66052a6 100644 (file)
@@ -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>