[Python-checkins] r55938 - python/trunk/Tools/buildbot/external-amd64.bat

thomas.heller python-checkins at python.org
Tue Jun 12 21:56:16 CEST 2007


Author: thomas.heller
Date: Tue Jun 12 21:56:12 2007
New Revision: 55938

Modified:
   python/trunk/Tools/buildbot/external-amd64.bat
Log:
Don't rebuild Berkeley DB if not needed (this was committed by accident).


Modified: python/trunk/Tools/buildbot/external-amd64.bat
==============================================================================
--- python/trunk/Tools/buildbot/external-amd64.bat	(original)
+++ python/trunk/Tools/buildbot/external-amd64.bat	Tue Jun 12 21:56:12 2007
@@ -27,7 +27,7 @@
 
 @rem Sleepycat db
 if not exist db-4.4.20 svn export http://svn.python.org/projects/external/db-4.4.20
-if not exist "db-4.4.20\build_win32\Release_AMD64\libdb44s.lib_XXX" (
+if not exist "db-4.4.20\build_win32\Release_AMD64\libdb44s.lib" (
    cd db-4.4.20\build_win32
    devenv Berkeley_DB.sln /build "Release AMD64" /project db_static /useenv
    cd ..\..


More information about the Python-checkins mailing list