diff options
author | Ross Burton <ross.burton@intel.com> | 2018-07-16 11:29:41 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-18 10:13:30 +0100 |
commit | 4f3378e0763a94a5daac7169f498177fc6ef4e75 (patch) | |
tree | 6b6050f092633622cd7eea14e0b8ef2da36107f1 | |
parent | cf321fa1f96be789e1e7c8704175f88fb5857576 (diff) | |
download | openembedded-core-4f3378e0763a94a5daac7169f498177fc6ef4e75.tar.gz openembedded-core-4f3378e0763a94a5daac7169f498177fc6ef4e75.tar.bz2 openembedded-core-4f3378e0763a94a5daac7169f498177fc6ef4e75.zip |
gnutls: use HTTP instead of FTP
HTTP is in general more reliable so use that in the SRC_URI.
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-support/gnutls/gnutls.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/gnutls/gnutls.inc b/meta/recipes-support/gnutls/gnutls.inc index 7bcb9133ad..98ec8d9667 100644 --- a/meta/recipes-support/gnutls/gnutls.inc +++ b/meta/recipes-support/gnutls/gnutls.inc @@ -17,7 +17,7 @@ DEPENDS_append_libc-musl = " argp-standalone" SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}" -SRC_URI = "ftp://ftp.gnutls.org/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar.xz" +SRC_URI = "https://www.gnupg.org/ftp/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar.xz" inherit autotools texinfo binconfig pkgconfig gettext lib_package gtk-doc |