2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00

[#3729] Add meson.sh to pull fixed meson version

This commit is contained in:
Andrei Pavel 2025-02-17 11:05:18 +02:00
parent bf3d5aa37b
commit 0b4ca4dc1a
No known key found for this signature in database
GPG Key ID: D4E804481939CB21

12
meson.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
if test ! -d venv; then
python3 -m venv ./venv
./venv/bin/pip install --upgrade pip
./venv/bin/pip install git+https://github.com/serebit/meson.git@iterative-transitive-link-dep-resolve
fi
# shellcheck disable=SC1091
# SC1091: Not following: ... was not specified as input (see shellcheck -x).
. ./venv/bin/activate
meson "${@}"