From 8ff88ffec9fc3d842b54f6a90cffda752cab3e40 Mon Sep 17 00:00:00 2001 From: Olivier Fourdan Date: Wed, 17 Apr 2024 15:13:06 +0200 Subject: [PATCH] xwayland: Use the path to Xwayland as installed Otherwise the executable cannot be found where specified. v2: Use 'xwayland_path' (Simon) Fixes: fbf5e26b5 - xwayland: Use full path for Xwayland exec Signed-off-by: Olivier Fourdan Part-of: --- hw/xwayland/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xwayland/meson.build b/hw/xwayland/meson.build index 9b1e5b6ce..bca6a899a 100644 --- a/hw/xwayland/meson.build +++ b/hw/xwayland/meson.build @@ -196,7 +196,7 @@ xwayland_manpage = configure_file( install_man(xwayland_manpage) desktop_data = configuration_data() -desktop_data.set('XWAYLAND', xwayland_server.full_path()) +desktop_data.set('XWAYLAND', xwayland_path + '/Xwayland')) desktop_data.set('DECORATE', have_libdecor ? '-decorate' : '') desktop_file = configure_file( input: 'desktop/org.freedesktop.Xwayland.desktop.in',