summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2023-02-24 18:45:39 +0100
committerCarlos Garnacho <carlosg@gnome.org>2023-02-27 09:18:57 +0100
commitf34ebd68cbc3065d3210443e1004b514e77da520 (patch)
tree00834256a7c0f465442c391751c65fe4c66afa3b /examples
parentc27eb6be6ce747c4112f528acd214d63f1504476 (diff)
downloadtracker-f34ebd68cbc3065d3210443e1004b514e77da520.tar.gz
build: Depend on meson >= 0.55
We'll use some features from there.
Diffstat (limited to 'examples')
-rw-r--r--examples/python/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/python/meson.build b/examples/python/meson.build
index 47bac5af0..65e329d2c 100644
--- a/examples/python/meson.build
+++ b/examples/python/meson.build
@@ -17,7 +17,7 @@ examples = [
foreach example_name: examples
file = meson.current_source_dir() / '@0@.py'.format(example_name)
test(example_name, python,
- args: sandbox_python_args + [python.path(), file],
+ args: sandbox_python_args + [python.full_path(), file],
env: env,
suite: 'examples')
endforeach