From: Pieter Lexis Date: Thu, 4 Jun 2026 09:40:44 +0000 (+0200) Subject: fix: URL for meson download X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17519%2Fhead;p=thirdparty%2Fpdns.git fix: URL for meson download --- diff --git a/builder-support/helpers/install_meson.sh b/builder-support/helpers/install_meson.sh index c8561771e8..0254d91694 100755 --- a/builder-support/helpers/install_meson.sh +++ b/builder-support/helpers/install_meson.sh @@ -5,8 +5,8 @@ set -e [ -e /tmp/.pdns_meson_installed ] && exit 0 # we already have meson, let's assume we put it there earlier readonly MESON_VERSION=$(jq -r .version < meson.json) -readonly MESON_TARBALL="${MESON_VERSION}.tar.gz" -readonly MESON_TARBALL_URL="https://github.com/mesonbuild/meson/archive/${MESON_TARBALL}" +readonly MESON_TARBALL="meson-${MESON_VERSION}.tar.gz" +readonly MESON_TARBALL_URL="https://github.com/mesonbuild/meson/releases/download/${MESON_VERSION}/${MESON_TARBALL}" readonly MESON_TARBALL_HASH=$(jq -r .SHA256SUM < meson.json) cd /tmp