Signed-off-by: Vinson Lee <v...@twitter.com> --- client/deps/mysql/mysql.py | 2 +- client/deps/pgsql/pgsql.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/client/deps/mysql/mysql.py b/client/deps/mysql/mysql.py index f4efde0..114b505 100755 --- a/client/deps/mysql/mysql.py +++ b/client/deps/mysql/mysql.py @@ -8,7 +8,7 @@ version = 3 def setup(tarball, topdir): srcdir = os.path.join(topdir, 'src') if not os.path.exists(tarball): - utils.get_file('http://mirror.x10.com/mirror/mysql/Downloads/MySQL-5.0/mysql-5.0.45.tar.gz', tarball) + utils.get_file('http://downloads.mysql.com/archives/mysql-5.0/mysql-5.0.45.tar.gz', tarball) utils.extract_tarball_to_dir(tarball, 'src') os.chdir(srcdir) utils.configure('--prefix=%s/mysql --enable-thread-safe-client' \ diff --git a/client/deps/pgsql/pgsql.py b/client/deps/pgsql/pgsql.py index e1aabf7..a771bef 100755 --- a/client/deps/pgsql/pgsql.py +++ b/client/deps/pgsql/pgsql.py @@ -8,7 +8,7 @@ version = 4 def setup(tarball, topdir): srcdir = os.path.join(topdir, 'src') if not os.path.exists(tarball): - utils.get_file('ftp://ftp.postgresql.org/pub/source/v8.3.1/postgresql-8.3.1.tar.bz2', tarball) + utils.get_file('ftp://ftp-archives.postgresql.org/pub/source/v8.3.1/postgresql-8.3.1.tar.bz2', tarball) utils.extract_tarball_to_dir(tarball, 'src') os.chdir(srcdir) utils.configure('--without-readline --without-zlib --enable-debug --prefix=%s/pgsql' % topdir) -- 1.7.5.4 _______________________________________________ Autotest mailing list Autotest@test.kernel.org http://test.kernel.org/cgi-bin/mailman/listinfo/autotest