diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-03-13 10:52:04 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-03-13 10:52:04 (GMT) |
commit | 14c1cf88ad6cdff5d8372273a0b7c43478c37d18 (patch) | |
tree | 19bc72ac37469f8b4078fa5485e9882a69930f9b /Tools | |
parent | a022789ab38c65cae5302f363f1cec92f807e859 (diff) | |
download | cpython-14c1cf88ad6cdff5d8372273a0b7c43478c37d18.zip cpython-14c1cf88ad6cdff5d8372273a0b7c43478c37d18.tar.gz cpython-14c1cf88ad6cdff5d8372273a0b7c43478c37d18.tar.bz2 |
Update to bzip2 1.0.3
Make buildbot slaves automatically fetch bzip2 1.0.3.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/buildbot/build.bat | 1 | ||||
-rw-r--r-- | Tools/buildbot/external.bat | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/Tools/buildbot/build.bat b/Tools/buildbot/build.bat index 00bbdbb..e3b77be 100644 --- a/Tools/buildbot/build.bat +++ b/Tools/buildbot/build.bat @@ -1,3 +1,4 @@ @rem Used by the buildbot "compile" step. +cmd /c Tools\buildbot\external.bat call "%VS71COMNTOOLS%vsvars32.bat" devenv.com /useenv /build Debug PCbuild\pcbuild.sln diff --git a/Tools/buildbot/external.bat b/Tools/buildbot/external.bat new file mode 100644 index 0000000..5dd1114 --- /dev/null +++ b/Tools/buildbot/external.bat @@ -0,0 +1,8 @@ +@rem Fetches (and builds if necessary) external dependencies
+
+@rem Assume we start inside the Python source directory
+cd ..
+
+@rem bzip
+if not exist bzip2-1.0.3 svn export http://svn.python.org/projects/external/bzip2-1.0.3
+
|