[Python-checkins] r42969 - python/trunk/PCbuild/_ssl.vcproj

tim.peters python-checkins at python.org
Sun Mar 12 00:05:40 CET 2006


Author: tim.peters
Date: Sun Mar 12 00:05:39 2006
New Revision: 42969

Modified:
   python/trunk/PCbuild/_ssl.vcproj
Log:
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.


Modified: python/trunk/PCbuild/_ssl.vcproj
==============================================================================
--- python/trunk/PCbuild/_ssl.vcproj	(original)
+++ python/trunk/PCbuild/_ssl.vcproj	Sun Mar 12 00:05:39 2006
@@ -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


More information about the Python-checkins mailing list