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

[#3730] Update meson.sh to pull latest

This commit is contained in:
Andrei Pavel 2025-02-20 15:33:23 +02:00
parent 9136d0ee7e
commit a28eb1f27f
No known key found for this signature in database
GPG Key ID: D4E804481939CB21

View File

@ -1,9 +1,15 @@
#!/bin/sh
# Pulls the latest meson that has fix https://github.com/mesonbuild/meson/pull/13532
# for issue https://github.com/mesonbuild/meson/issues/11322.
#
# Usage: just like meson
# Example: ./meson.sh setup build
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
./venv/bin/pip install git+https://github.com/mesonbuild/meson.git
fi
# shellcheck disable=SC1091
# SC1091: Not following: ... was not specified as input (see shellcheck -x).