[Python-checkins] r64267 - python/trunk/Tools/buildbot/external-common.bat
amaury.forgeotdarc
python-checkins at python.org
Sat Jun 14 09:40:32 CEST 2008
Author: amaury.forgeotdarc
Date: Sat Jun 14 09:40:32 2008
New Revision: 64267
Log:
Use the correct URL for sqlite3 sources, and try to fix windows buildbots.
Modified:
python/trunk/Tools/buildbot/external-common.bat
Modified: python/trunk/Tools/buildbot/external-common.bat
==============================================================================
--- python/trunk/Tools/buildbot/external-common.bat (original)
+++ python/trunk/Tools/buildbot/external-common.bat Sat Jun 14 09:40:32 2008
@@ -15,7 +15,7 @@
@rem if exist tk-8.4.18.1 rd /s/q tk-8.4.18.1
@rem if exist db-4.4.20 rd /s/q db-4.4.20
@rem if exist openssl-0.9.8g rd /s/q openssl-0.9.8g
- at rem if exist sqlite-source-3.5.9 rd /s/q sqlite-source-3.5.9
+ at rem if exist sqlite-3.5.9 rd /s/q sqlite-3.5.9
@rem bzip
if not exist bzip2-1.0.5 (
@@ -37,7 +37,7 @@
if not exist tk-8.5.2.0 svn export http://svn.python.org/projects/external/tk-8.5.2.0
@rem sqlite3
-if not exist sqlite-source-3.5.9 (
+if not exist sqlite-3.5.9 (
rd /s/q sqlite-source-3.3.4
- svn export http://svn.python.org/projects/external/sqlite-source-3.5.9
+ svn export http://svn.python.org/projects/external/sqlite-3.5.9
)
More information about the Python-checkins
mailing list