[Python-checkins] r42979 - python/branches/release24-maint/PCbuild/_ssl.vcproj

tim.peters python-checkins at python.org
Sun Mar 12 08:05:36 CET 2006


Author: tim.peters
Date: Sun Mar 12 08:05:34 2006
New Revision: 42979

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


Modified: python/branches/release24-maint/PCbuild/_ssl.vcproj
==============================================================================
--- python/branches/release24-maint/PCbuild/_ssl.vcproj	(original)
+++ python/branches/release24-maint/PCbuild/_ssl.vcproj	Sun Mar 12 08:05:34 2006
@@ -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>


More information about the Python-checkins mailing list