From 22b8af263b14ca24ccaeaf3cc256302003dca74c Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Mon, 4 Mar 2024 16:51:30 +0000 Subject: [PATCH] build: Use find_program().full_path() `find_program().path()` was deprecated in Meson 0.55, but we depend on Meson 0.60. This helps fix the build with `--fatal-meson-warnings`. Signed-off-by: Philip Withnall Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 43c080404..c90ee41ae 100644 --- a/meson.build +++ b/meson.build @@ -574,7 +574,7 @@ if have_xwayland if xwayland_dep.found() xwayland_path = xwayland_dep.get_variable('xwayland') else - xwayland_path = find_program('Xwayland').path() + xwayland_path = find_program('Xwayland').full_path() endif endif cdata.set_quoted('XWAYLAND_PATH', xwayland_path)