From 8f6b5c4af59d0c6f67d1721ab892d1f5b29264e8 Mon Sep 17 00:00:00 2001 From: Timothee Besset Date: Sun, 9 Jun 2013 18:16:18 +0100 Subject: [PATCH] new dependency location --- config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.py b/config.py index 8621558a..ba8f27e4 100644 --- a/config.py +++ b/config.py @@ -287,10 +287,11 @@ class Config: 'gtk-bundle-2.22.1-win64-GtkRadiant.zip', 'jpeg-9-GtkRadiant.zip', 'libxml2-2.9.1-GtkRadiant.zip', + 'gtkglext-1.2.0-3-win32.zip', ]: if ( not os.path.exists( lib_archive ) ): print( 'downloading %s' % lib_archive ) - archive_web_request = urllib2.urlopen( 'https://www.dropbox.com/sh/y5rydj22e5ozpik/He0ghuwrgW/GtkRadiant-dependencies/%s' % lib_archive ) + archive_web_request = urllib2.urlopen( 'http://gtkradiant.s3-website-us-east-1.amazonaws.com/%s' % lib_archive ) archive_File = open( lib_archive, 'wb' ) while True: data = archive_web_request.read( 1048576 ) # read 1mb at a time