diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-02-18 17:35:15 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-02-18 17:35:15 (GMT) |
commit | ee227ae7cf1f88e865c168a8f13743e92ade1938 (patch) | |
tree | 28948874f064e127fac9cde64e3d3e79a67bc811 /PCbuild/pythoncore.vcxproj | |
parent | 907f0172e558a4003eb287303be862092eca6dc0 (diff) | |
download | cpython-ee227ae7cf1f88e865c168a8f13743e92ade1938.zip cpython-ee227ae7cf1f88e865c168a8f13743e92ade1938.tar.gz cpython-ee227ae7cf1f88e865c168a8f13743e92ade1938.tar.bz2 |
Issue #20609: Merge with 3.3.
Diffstat (limited to 'PCbuild/pythoncore.vcxproj')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 48 |
1 files changed, 40 insertions, 8 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 11b7054..2296f0b 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -182,7 +182,11 @@ <BaseAddress>0x1e000000</BaseAddress> </Link> <PreBuildEvent> - <Command>$(KillPythonExe)</Command> + <Command>$(KillPythonExe) +IF %ERRORLEVEL% NEQ 0 ( + echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL% + exit /b 0 +)</Command> </PreBuildEvent> <PreBuildEvent> <Message>Killing any running $(PythonExe) instances...</Message> @@ -213,7 +217,11 @@ <BaseAddress>0x1e000000</BaseAddress> </Link> <PreBuildEvent> - <Command>$(KillPythonExe)</Command> + <Command>$(KillPythonExe) +IF %ERRORLEVEL% NEQ 0 ( + echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL% + exit /b 0 +)</Command> </PreBuildEvent> <PreBuildEvent> <Message>Killing any running $(PythonExe) instances...</Message> @@ -244,7 +252,11 @@ <BaseAddress>0x1e000000</BaseAddress> </Link> <PreBuildEvent> - <Command>$(KillPythonExe)</Command> + <Command>$(KillPythonExe) +IF %ERRORLEVEL% NEQ 0 ( + echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL% + exit /b 0 +)</Command> </PreBuildEvent> <PreBuildEvent> <Message>Killing any running $(PythonExe) instances...</Message> @@ -278,7 +290,11 @@ <BaseAddress>0x1e000000</BaseAddress> </Link> <PreBuildEvent> - <Command>$(KillPythonExe)</Command> + <Command>$(KillPythonExe) +IF %ERRORLEVEL% NEQ 0 ( + echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL% + exit /b 0 +)</Command> </PreBuildEvent> <PreBuildEvent> <Message>Killing any running $(PythonExe) instances...</Message> @@ -307,7 +323,11 @@ <BaseAddress>0x1e000000</BaseAddress> </Link> <PreBuildEvent> - <Command>$(KillPythonExe)</Command> + <Command>$(KillPythonExe) +IF %ERRORLEVEL% NEQ 0 ( + echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL% + exit /b 0 +)</Command> </PreBuildEvent> <PreBuildEvent> <Message>Killing any running $(PythonExe) instances...</Message> @@ -339,7 +359,11 @@ <TargetMachine>MachineX64</TargetMachine> </Link> <PreBuildEvent> - <Command>$(KillPythonExe)</Command> + <Command>$(KillPythonExe) +IF %ERRORLEVEL% NEQ 0 ( + echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL% + exit /b 0 +)</Command> </PreBuildEvent> <PreBuildEvent> <Message>Killing any running $(PythonExe) instances...</Message> @@ -368,7 +392,11 @@ <BaseAddress>0x1e000000</BaseAddress> </Link> <PreBuildEvent> - <Command>$(KillPythonExe)</Command> + <Command>$(KillPythonExe) +IF %ERRORLEVEL% NEQ 0 ( + echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL% + exit /b 0 +)</Command> </PreBuildEvent> <PreBuildEvent> <Message>Killing any running $(PythonExe) instances...</Message> @@ -400,7 +428,11 @@ <TargetMachine>MachineX64</TargetMachine> </Link> <PreBuildEvent> - <Command>$(KillPythonExe)</Command> + <Command>$(KillPythonExe) +IF %ERRORLEVEL% NEQ 0 ( + echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL% + exit /b 0 +)</Command> </PreBuildEvent> <PreBuildEvent> <Message>Killing any running $(PythonExe) instances...</Message> |