From 75093d1b1de7af82acd3b8bcc61f308c37493400 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 22 Nov 2021 00:51:08 -0800 Subject: tools/meson: update to 0.60.1 change meson binary to use py extension. Fixes issue with meson's symbolextractor using the host python instead of the system one. We intentionally use a .py extension here so that meson launches additional python scripts with the same build host python interpreter as itself is running under (and not the host package one once it becomes available) Signed-off-by: Rosen Penev --- include/meson.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/meson.mk') diff --git a/include/meson.mk b/include/meson.mk index ae17e18d2d..e101de4d89 100644 --- a/include/meson.mk +++ b/include/meson.mk @@ -56,7 +56,7 @@ MESON_CPU:="$(CPU_TYPE)$(if $(CPU_SUBTYPE),+$(CPU_SUBTYPE))" endif define Meson - $(2) $(STAGING_DIR_HOST)/bin/$(PYTHON) $(STAGING_DIR_HOST)/bin/meson $(1) + $(2) $(STAGING_DIR_HOST)/bin/$(PYTHON) $(STAGING_DIR_HOST)/bin/meson.py $(1) endef define Meson/CreateNativeFile -- cgit v1.2.3