diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-03-12 07:05:34 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-03-12 07:05:34 (GMT) |
commit | 9eee616f3052cbb5e97b7af31acb1768c2bd489a (patch) | |
tree | e4c50d65fc347cd96482c4dc625fde31fc7742fc /PCbuild | |
parent | c8bbcc339453a777b95b6c916f896727181ab6d8 (diff) | |
download | cpython-9eee616f3052cbb5e97b7af31acb1768c2bd489a.zip cpython-9eee616f3052cbb5e97b7af31acb1768c2bd489a.tar.gz cpython-9eee616f3052cbb5e97b7af31acb1768c2bd489a.tar.bz2 |
Add a do-nothing "clean" operation to the _ssl project,
so the buildbot's "clean" step doesn't fail due to
_ssl whining that it can't spawn an empty string.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/_ssl.vcproj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/PCbuild/_ssl.vcproj b/PCbuild/_ssl.vcproj index 3bcd564..24448be 100644 --- a/PCbuild/_ssl.vcproj +++ b/PCbuild/_ssl.vcproj @@ -22,6 +22,7 @@ Name="VCNMakeTool" BuildCommandLine="python build_ssl.py" ReBuildCommandLine="python build_ssl.py -a" + CleanCommandLine="echo Nothing to do" Output="_ssl.pyd"/> </Configuration> <Configuration @@ -35,6 +36,7 @@ Name="VCNMakeTool" BuildCommandLine="python_d -u build_ssl.py -d" ReBuildCommandLine="python_d -u build_ssl.py -d -a" + CleanCommandLine="echo Nothing to do" Output="_ssl_d.pyd"/> </Configuration> <Configuration @@ -48,6 +50,7 @@ Name="VCNMakeTool" BuildCommandLine="python build_ssl.py" ReBuildCommandLine="python build_ssl.py -a" + CleanCommandLine="echo Nothing to do" Output="_ssl.pyd"/> </Configuration> </Configurations> |