From a28eb1f27fb15d7dc51c06f9ab02304f1dfcc0cf Mon Sep 17 00:00:00 2001 From: Andrei Pavel Date: Thu, 20 Feb 2025 15:33:23 +0200 Subject: [PATCH] [#3730] Update meson.sh to pull latest --- meson.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/meson.sh b/meson.sh index 008668aedf..8f01167b45 100755 --- a/meson.sh +++ b/meson.sh @@ -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).