[Python-checkins] r43648 - python/trunk/Tools/buildbot/external.bat (original) (raw)

tim.peters python-checkins at python.org
Tue Apr 4 21:12:52 CEST 2006


Author: tim.peters Date: Tue Apr 4 21:12:51 2006 New Revision: 43648

Modified: python/trunk/Tools/buildbot/external.bat Log: The part checking for the sqlite DLL was looking at, and copying to, a wrong location (it copied the DLL under the Python directory, and gave it name 'PCbuild').

The Windows buildbots other than mine are probably hung now, waiting for someone to press "OK" on a popup box informing them that sqlite3.dll couldn't be found.

Modified: python/trunk/Tools/buildbot/external.bat

--- python/trunk/Tools/buildbot/external.bat (original) +++ python/trunk/Tools/buildbot/external.bat Tue Apr 4 21:12:51 2006 @@ -32,4 +32,4 @@

@rem sqlite if not exist sqlite-source-3.3.4 svn export http://svn.python.org/projects/external/sqlite-source-3.3.4 -if not exist build\Python\PCbuild\sqlite3.dll copy sqlite-source-3.3.4\sqlite3.dll build\Python\PCbuild +if not exist build\PCbuild\sqlite3.dll copy sqlite-source-3.3.4\sqlite3.dll build\PCbuild



More information about the Python-checkins mailing list