summaryrefslogtreecommitdiff
path: root/bus
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2022-05-23 19:14:20 -0500
committerFederico Mena Quintero <federico@gnome.org>2022-05-23 19:14:20 -0500
commita0c5a2694b81318e412776bf6aefda35a625f4ec (patch)
tree338c3db5f0446d728476f84af2392a8ad259d5fe /bus
parent4066f26f59bd251ea52e2faafcac85ea3c4baa29 (diff)
downloadat-spi2-core-a0c5a2694b81318e412776bf6aefda35a625f4ec.tar.gz
meson: use full_path() instead of path() for Meson 0.55 onwards
Diffstat (limited to 'bus')
-rw-r--r--bus/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/bus/meson.build b/bus/meson.build
index 21408f2f..22a1bce6 100644
--- a/bus/meson.build
+++ b/bus/meson.build
@@ -58,7 +58,7 @@ else
'/usr/pkg/bin/dbus-daemon',
required: false)
if dbus_daemon.found()
- launcher_args += '-DDBUS_DAEMON="@0@"'.format(dbus_daemon.path())
+ launcher_args += '-DDBUS_DAEMON="@0@"'.format(dbus_daemon.full_path())
endif
endif
@@ -70,7 +70,7 @@ else
dbus_broker = find_program('dbus-broker-launch',
required: false)
if dbus_broker.found()
- launcher_args += '-DDBUS_BROKER="@0@"'.format(dbus_broker.path())
+ launcher_args += '-DDBUS_BROKER="@0@"'.format(dbus_broker.full_path())
needs_systemd = true
endif
endif