diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-03-11 23:05:39 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-03-11 23:05:39 (GMT) |
commit | 3f2723d44fe355115ad5e3283466cc72e15f2abf (patch) | |
tree | f5ac5481f12d4dc696c56b842819dc4f53c9ee0e /PCbuild | |
parent | 43179c8e6fa2679e17da2eeab36cdc6d91560477 (diff) | |
download | cpython-3f2723d44fe355115ad5e3283466cc72e15f2abf.zip cpython-3f2723d44fe355115ad5e3283466cc72e15f2abf.tar.gz cpython-3f2723d44fe355115ad5e3283466cc72e15f2abf.tar.bz2 |
Give the _ssl project a harmless command to perform
for its "clean" action. Else the clean step run by
the buildbot reports failure, due to the _ssl project
whining about not being able to 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 373e948..3ebedbd 100644 --- a/PCbuild/_ssl.vcproj +++ b/PCbuild/_ssl.vcproj @@ -3,6 +3,7 @@ ProjectType="Visual C++" Version="7.10" Name="_ssl" + RootNamespace="_ssl" SccProjectName="" SccLocalPath="" Keyword="MakeFileProj"> @@ -22,6 +23,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 +37,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 |