Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0614ca commit 6ecf594Copy full SHA for 6ecf594
1 file changed
Mac/BuildScript/build-installer.py
@@ -271,10 +271,11 @@ def library_recipes():
271
tk_patches = [ ]
272
273
274
+ base_url = "https://prdownloads.sourceforge.net/tcl/{what}{version}-src.tar.gz"
275
result.extend([
276
dict(
277
name="Tcl %s"%(tcl_tk_ver,),
- 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),
279
checksum=tcl_checksum,
280
buildDir="unix",
281
configure_pre=[
@@ -291,7 +292,7 @@ def library_recipes():
291
292
),
293
294
name="Tk %s"%(tcl_tk_ver,),
- 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),
296
checksum=tk_checksum,
297
patches=tk_patches,
298
0 commit comments