From a814a4aa9b10fb7cff487b7fc99e33eae6b9d211 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Sun, 8 Mar 2026 20:07:43 +0100 Subject: [PATCH] Revert "meson: Switch Python resolution strategy (#270)" Turns out this breaks our CI. We should probably make this an option instead. This reverts commit 60a4a032d6c41c95eaf92a88740bc8f74662c793. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c82d788..aa96710 100644 --- a/meson.build +++ b/meson.build @@ -19,7 +19,7 @@ if ndebug == 'true' or (ndebug == 'if-release' and not get_option('debug')) ] endif -python_dep = python.dependency(method: 'system') +python_dep = python.dependency() frida_core_dep = dependency('frida-core-1.0', default_options: [ 'frida_version=' + meson.project_version().replace('.dev', '-dev.'), ])