From 8191ab3771b60d30604f5fe7b75981312b5a545b Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Fri, 6 Oct 2023 13:26:25 +0300 Subject: Fix issues related to utils & libutils Fix dependency issues related to libutils, wrong use of libutils_enabled. Signed-off-by: Tomi Valkeinen --- py/pykms/meson.build | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'py') diff --git a/py/pykms/meson.build b/py/pykms/meson.build index 866be42..19bb3d9 100644 --- a/py/pykms/meson.build +++ b/py/pykms/meson.build @@ -1,3 +1,10 @@ + +# Python bindings require libutils for now. +if not get_option('libutils') + pybindings_enabled = false + subdir_done() +endif + py3_dep = dependency('python3', required : get_option('pykms')) if py3_dep.found() == false -- cgit v1.2.3