From: Remi Gacogne Date: Mon, 17 Feb 2025 14:26:45 +0000 (+0100) Subject: dnsdist: Use python3 when installing meson X-Git-Tag: dnsdist-2.0.0-alpha1~30^2~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=053b02792a3cce99686d640a45823b7dfecfc432;p=thirdparty%2Fpdns.git dnsdist: Use python3 when installing meson --- diff --git a/builder-support/helpers/install_meson.sh b/builder-support/helpers/install_meson.sh index ff529c041a..7421480d91 100755 --- a/builder-support/helpers/install_meson.sh +++ b/builder-support/helpers/install_meson.sh @@ -16,8 +16,8 @@ echo "${MESON_TARBALL_HASH}" "${MESON_TARBALL}" | sha256sum -c - tar xf "${MESON_TARBALL}" cd "meson-${MESON_VERSION}" -python setup.py build -python setup.py install +python3 setup.py build +python3 setup.py install cd .. rm -rf "${MESON_TARBALL}" "meson-${MESON_VERSION}"