diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-04-04 15:21:02 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-04-04 15:21:02 (GMT) |
commit | b2fc21e9f8b58dd079ea0e6ebfc49ecda6114aea (patch) | |
tree | abd9b87792117fb99e7f5a149f16f27ec3e08d18 /Tools | |
parent | 3b8ff310554294b1aa9ba5c9f551e2e941d8d7fa (diff) | |
download | cpython-b2fc21e9f8b58dd079ea0e6ebfc49ecda6114aea.zip cpython-b2fc21e9f8b58dd079ea0e6ebfc49ecda6114aea.tar.gz cpython-b2fc21e9f8b58dd079ea0e6ebfc49ecda6114aea.tar.bz2 |
sqlite on Windows:
- The buildbot "fetch it" step failed at the end, due to
using Unix syntax in the final "copy the DLL" step.
test_sqlite was skipped as a result.
- test_sqlite is no longer an expected skip on Windows.
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 918d759..a1758e3 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\Python\PCbuild\sqlite3.dll copy sqlite-source-3.3.4\sqlite3.dll build\Python\PCbuild
|