[Python-checkins] r85057 - in python/branches/release27-maint-ttk-debug-on-xp5/Tools/buildbot: build.bat clean.bat

hirokazu.yamamoto python-checkins at python.org
Tue Sep 28 14:22:07 CEST 2010


Author: hirokazu.yamamoto
Date: Tue Sep 28 14:22:07 2010
New Revision: 85057

Log:
Try to fix "another process is using files" error in *clean* faze.

Modified:
   python/branches/release27-maint-ttk-debug-on-xp5/Tools/buildbot/build.bat
   python/branches/release27-maint-ttk-debug-on-xp5/Tools/buildbot/clean.bat

Modified: python/branches/release27-maint-ttk-debug-on-xp5/Tools/buildbot/build.bat
==============================================================================
--- python/branches/release27-maint-ttk-debug-on-xp5/Tools/buildbot/build.bat	(original)
+++ python/branches/release27-maint-ttk-debug-on-xp5/Tools/buildbot/build.bat	Tue Sep 28 14:22:07 2010
@@ -2,6 +2,5 @@
 cmd /c Tools\buildbot\external.bat
 call "%VS90COMNTOOLS%vsvars32.bat"
 cmd /c Tools\buildbot\clean.bat
-vcbuild /useenv PCbuild\kill_python.vcproj "Debug|Win32" && PCbuild\kill_python_d.exe
 vcbuild /useenv PCbuild\pcbuild.sln "Debug|Win32"
 

Modified: python/branches/release27-maint-ttk-debug-on-xp5/Tools/buildbot/clean.bat
==============================================================================
--- python/branches/release27-maint-ttk-debug-on-xp5/Tools/buildbot/clean.bat	(original)
+++ python/branches/release27-maint-ttk-debug-on-xp5/Tools/buildbot/clean.bat	Tue Sep 28 14:22:07 2010
@@ -1,5 +1,6 @@
 @rem Used by the buildbot "clean" step.
 call "%VS90COMNTOOLS%vsvars32.bat"
+vcbuild /useenv PCbuild\kill_python.vcproj "Debug|Win32" && PCbuild\kill_python_d.exe
 @echo Deleting .pyc/.pyo files ...
 del /s Lib\*.pyc Lib\*.pyo
 cd PCbuild


More information about the Python-checkins mailing list