2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 01:49:48 +00:00

[#3731] Install ninja too in meson.sh

This commit is contained in:
Andrei Pavel 2025-02-24 14:52:14 +02:00
parent a0d00963c5
commit abedf4ca96
No known key found for this signature in database
GPG Key ID: D4E804481939CB21

View File

@ -9,7 +9,9 @@
if test ! -d venv; then
python3 -m venv ./venv
./venv/bin/pip install --upgrade pip
# When meson 1.8 will be released, we can pin the versions.
./venv/bin/pip install git+https://github.com/mesonbuild/meson.git
./venv/bin/pip install ninja
fi
# shellcheck disable=SC1091
# SC1091: Not following: ... was not specified as input (see shellcheck -x).