diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-04-04 19:12:51 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-04-04 19:12:51 (GMT) |
commit | ed2038b5990c3e535acd5886b36dfd6d82c84432 (patch) | |
tree | c2601362fdd3f11b635c0b801af00673162fbeac /Tools | |
parent | 9c67ee08d8f2af7aa47cfb0c3a0470eed16996cd (diff) | |
download | cpython-ed2038b5990c3e535acd5886b36dfd6d82c84432.zip cpython-ed2038b5990c3e535acd5886b36dfd6d82c84432.tar.gz cpython-ed2038b5990c3e535acd5886b36dfd6d82c84432.tar.bz2 |
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.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/buildbot/external.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/buildbot/external.bat b/Tools/buildbot/external.bat index a1758e3..c6d252d 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
|