Skip to content

Commit

Permalink
gh-92171: Update Tcl/Tk download links in macOS installer script (GH-…
Browse files Browse the repository at this point in the history
  • Loading branch information
erlend-aasland committed May 9, 2022
1 parent f0614ca commit 6ecf594
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Mac/BuildScript/build-installer.py
Expand Up @@ -271,10 +271,11 @@ def library_recipes():
tk_patches = [ ]


base_url = "https://prdownloads.sourceforge.net/tcl/{what}{version}-src.tar.gz"
result.extend([
dict(
name="Tcl %s"%(tcl_tk_ver,),
url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tcl%s-src.tar.gz"%(tcl_tk_ver,),
url=base_url.format(what="tcl", version=tcl_tk_ver),
checksum=tcl_checksum,
buildDir="unix",
configure_pre=[
Expand All @@ -291,7 +292,7 @@ def library_recipes():
),
dict(
name="Tk %s"%(tcl_tk_ver,),
url="ftp://ftp.tcl.tk/pub/tcl//tcl8_6/tk%s-src.tar.gz"%(tcl_tk_ver,),
url=base_url.format(what="tk", version=tcl_tk_ver),
checksum=tk_checksum,
patches=tk_patches,
buildDir="unix",
Expand Down

0 comments on commit 6ecf594

Please sign in to comment.