Corrected a big mistake in the rules file I didn't previously notice. It was pointing to a static 4.7.0 url, despite being 4.8.0 in the version. Correct it. Technically this bumps it through two releases.
https://gitlab.freedesktop.org/slirp/libslirp/-/releases/v4.9.0 https://gitlab.freedesktop.org/slirp/libslirp/-/releases/v4.8.0 Signed-off-by: Christian Melki <[email protected]> --- rules/libslirp.make | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rules/libslirp.make b/rules/libslirp.make index 4f0832ddc..1db03cee7 100644 --- a/rules/libslirp.make +++ b/rules/libslirp.make @@ -14,11 +14,11 @@ PACKAGES-$(PTXCONF_LIBSLIRP) += libslirp # # Paths and names # -LIBSLIRP_VERSION := 4.8.0 -LIBSLIRP_MD5 := 4f701d26a46fe9bf6db302aef6ed467f +LIBSLIRP_VERSION := 4.9.0 +LIBSLIRP_MD5 := 31dbbfe667297a5931e56ba78f69c64f LIBSLIRP := libslirp-v$(LIBSLIRP_VERSION) LIBSLIRP_SUFFIX := tar.bz2 -LIBSLIRP_URL := https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v4.7.0/$(LIBSLIRP).$(LIBSLIRP_SUFFIX) +LIBSLIRP_URL := https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v$(LIBSLIRP_VERSION)/$(LIBSLIRP).$(LIBSLIRP_SUFFIX) LIBSLIRP_SOURCE := $(SRCDIR)/$(LIBSLIRP).$(LIBSLIRP_SUFFIX) LIBSLIRP_DIR := $(BUILDDIR)/$(LIBSLIRP) LIBSLIRP_LICENSE := BSD-3-Clause AND MIT -- 2.34.1
