From 912536ff7c6767cbe45129fd14caa3ccb5036adf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Tue, 3 Feb 2026 11:51:52 +0000 Subject: [PATCH] Makefile: add python script dependency for meson-buildoptions.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If we update the script we should also make sure we regenerate the help text. Reviewed-by: Paolo Bonzini Message-ID: <20260203115201.2387721-3-alex.bennee@linaro.org> Signed-off-by: Alex Bennée --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9fb55dcf33..54547a37b1 100644 --- a/Makefile +++ b/Makefile @@ -130,7 +130,7 @@ Makefile.mtest: build.ninja scripts/mtest2make.py .PHONY: update-buildoptions all update-buildoptions: $(SRC_PATH)/scripts/meson-buildoptions.sh -$(SRC_PATH)/scripts/meson-buildoptions.sh: $(SRC_PATH)/meson_options.txt +$(SRC_PATH)/scripts/meson-buildoptions.sh: $(SRC_PATH)/meson_options.txt $(SRC_PATH)/scripts/meson-buildoptions.py $(MESON) introspect --buildoptions $(SRC_PATH)/meson.build | $(PYTHON) \ scripts/meson-buildoptions.py > $@.tmp && mv $@.tmp $@ endif