Skip to content

Commit

Permalink
Changed 3rdparty lib downloads to use https instead of ftp
Browse files Browse the repository at this point in the history
  • Loading branch information
Pekureda authored and gavv committed Jan 30, 2024
1 parent c92c018 commit 752b0f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/scons_helpers/build-3rdparty.py
Original file line number Diff line number Diff line change
Expand Up @@ -1300,7 +1300,7 @@ def die(text, *args):
elif ctx.pkg_name == 'alsa':
download(
ctx,
'ftp://ftp.alsa-project.org/pub/lib/alsa-lib-{ctx.pkg_ver}.tar.bz2',
'https://www.alsa-project.org/files/pub/lib/alsa-lib-{ctx.pkg_ver}.tar.bz2',
'alsa-lib-{ctx.pkg_ver}.tar.bz2')
unpack(ctx,
'alsa-lib-{ctx.pkg_ver}.tar.bz2',
Expand Down Expand Up @@ -1411,7 +1411,7 @@ def die(text, *args):
elif ctx.pkg_name == 'ltdl':
download(
ctx,
'ftp://ftp.gnu.org/gnu/libtool/libtool-{ctx.pkg_ver}.tar.gz',
'https://ftp.gnu.org/gnu/libtool/libtool-{ctx.pkg_ver}.tar.gz',
'libtool-{ctx.pkg_ver}.tar.gz')
unpack(
ctx,
Expand Down Expand Up @@ -1463,7 +1463,7 @@ def die(text, *args):
elif ctx.pkg_name == 'gengetopt':
download(
ctx,
'ftp://ftp.gnu.org/gnu/gengetopt/gengetopt-{ctx.pkg_ver}.tar.gz',
'https://ftp.gnu.org/gnu/gengetopt/gengetopt-{ctx.pkg_ver}.tar.gz',
'gengetopt-{ctx.pkg_ver}.tar.gz')
unpack(
ctx,
Expand Down

0 comments on commit 752b0f0

Please sign in to comment.