]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3730] Update meson.sh to pull latest
authorAndrei Pavel <andrei@isc.org>
Thu, 20 Feb 2025 13:33:23 +0000 (15:33 +0200)
committerAndrei Pavel <andrei@isc.org>
Fri, 21 Feb 2025 16:43:12 +0000 (18:43 +0200)
meson.sh

index 008668aedf4913135fb823c29dc03d377431c8bc..8f01167b45344e42910676e2f40d5d9504f9b94a 100755 (executable)
--- 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).