From 95f2c198f584ad323a5fe60b19261a1dd55c08df Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Thu, 6 Jun 2024 14:23:20 -0700 Subject: [PATCH] xtb-python: patch meson build file (#114) At least with meson 1.3.2 one has to set pure to false for find installation or else build fails. Signed-off-by: Howard Pritchard --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 11703c8..83cc604 100644 --- a/meson.build +++ b/meson.build @@ -46,6 +46,7 @@ python = pymod.find_installation( modules: [ 'cffi', ], + pure: false, ) python_dep = python.dependency(required: true)