]> git.eshelyaron.com Git - emacs.git/commitdiff
Adjust build-dep-zips.py download link
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 14 Nov 2021 01:06:26 +0000 (02:06 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 14 Nov 2021 01:06:26 +0000 (02:06 +0100)
* admin/nt/dist-build/build-dep-zips.py (download_source): Adjust
the download link (bug#40628).

admin/nt/dist-build/build-dep-zips.py

index 6bed191cae7aec4af5d7f57135375bc943eb988b..dfff493b64014d01f8bb87446e0bf81026881d84 100755 (executable)
@@ -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
         )