File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -271,10 +271,11 @@ def library_recipes():
271
271
tk_patches = [ ]
272
272
273
273
274
+ base_url = "https://prdownloads.sourceforge.net/tcl/{what}{version}-src.tar.gz"
274
275
result .extend ([
275
276
dict (
276
277
name = "Tcl %s" % (tcl_tk_ver ,),
277
- url = "ftp://ftp. tcl.tk/pub/tcl//tcl8_6/tcl%s-src.tar.gz" % ( tcl_tk_ver , ),
278
+ url = base_url . format ( what = " tcl" , version = tcl_tk_ver ),
278
279
checksum = tcl_checksum ,
279
280
buildDir = "unix" ,
280
281
configure_pre = [
@@ -291,7 +292,7 @@ def library_recipes():
291
292
),
292
293
dict (
293
294
name = "Tk %s" % (tcl_tk_ver ,),
294
- url = "ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tk%s-src.tar.gz" % ( tcl_tk_ver , ),
295
+ url = base_url . format ( what = "tk" , version = tcl_tk_ver ),
295
296
checksum = tk_checksum ,
296
297
patches = tk_patches ,
297
298
buildDir = "unix" ,
You can’t perform that action at this time.
0 commit comments