diff options
| author | Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> | 2023-10-06 13:26:25 +0300 |
|---|---|---|
| committer | Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> | 2023-10-06 13:28:33 +0300 |
| commit | 8191ab3771b60d30604f5fe7b75981312b5a545b (patch) | |
| tree | 94d00851627bdcbda2e8b930b67c126d88190efc /py | |
| parent | b91affd0725f2523e2563da4f6295a2977fd3945 (diff) | |
Fix issues related to utils & libutils
Fix dependency issues related to libutils, wrong use of
libutils_enabled.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Diffstat (limited to 'py')
| -rw-r--r-- | py/pykms/meson.build | 7 |
1 files changed, 7 insertions, 0 deletions
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 |
