From: Tim Peters Date: Tue, 4 Apr 2006 19:12:51 +0000 (+0000) Subject: The part checking for the sqlite DLL was looking at, and X-Git-Tag: v2.5a1~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed2038b5990c3e535acd5886b36dfd6d82c84432;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Tools/buildbot/external.bat b/Tools/buildbot/external.bat index a1758e3e52ab..c6d252ddb9ef 100644 --- a/Tools/buildbot/external.bat +++ b/Tools/buildbot/external.bat @@ -32,4 +32,4 @@ if not exist tcl8.4.12 ( @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