summaryrefslogtreecommitdiff
path: root/admin/nt/dist-build
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-11-14 02:06:26 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2021-11-14 02:06:26 +0100
commit5beed9dfed64fe72ab8678d2706eddbbee3c157b (patch)
tree058bf4ed607132ef97cf4ab414d0386b3cda5136 /admin/nt/dist-build
parent439a3094ff7fd84d1b1a5c6f5eb87431eec0d7fd (diff)
downloademacs-5beed9dfed64fe72ab8678d2706eddbbee3c157b.tar.gz
Adjust build-dep-zips.py download link
* admin/nt/dist-build/build-dep-zips.py (download_source): Adjust the download link (bug#40628).
Diffstat (limited to 'admin/nt/dist-build')
-rwxr-xr-xadmin/nt/dist-build/build-dep-zips.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/nt/dist-build/build-dep-zips.py b/admin/nt/dist-build/build-dep-zips.py
index 6bed191cae7..dfff493b640 100755
--- a/admin/nt/dist-build/build-dep-zips.py
+++ b/admin/nt/dist-build/build-dep-zips.py
@@ -123,7 +123,7 @@ MUNGE_DEP_PKGS={
## Currently no packages seem to require this!
ARCH_PKGS=[]
-SRC_REPO="https://sourceforge.net/projects/msys2/files/REPOS/MINGW/Sources"
+SRC_REPO="https://repo.msys2.org/mingw/sources"
def immediate_deps(pkgs):
@@ -169,7 +169,7 @@ def download_source(tarball):
if not os.path.exists("../emacs-src-cache/{}".format(tarball)):
print("Downloading {}...".format(tarball))
check_output_maybe(
- "wget -a ../download.log -O ../emacs-src-cache/{} {}/{}/download"
+ "wget -a ../download.log -O ../emacs-src-cache/{} {}/{}"
.format(tarball, SRC_REPO, tarball),
shell=True
)