From 2f2e5da4c345a0bc091e0b77a03785f38e624e8c Mon Sep 17 00:00:00 2001 From: Chen Qi Date: Tue, 13 Jul 2021 18:26:38 +0100 Subject: [PATCH] backend-wayland: fix incorrect header The wayland.c actually include 'xdg-shell-client-protocol.h' instead of the server one, so fix it. Otherwise, it's possible to get build failure due to race condition. Signed-off-by: Chen Qi Signed-off-by: Daniel Stone [daniels: Found in OpenEmbedded/Yocto source.] --- libweston/backend-wayland/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libweston/backend-wayland/meson.build b/libweston/backend-wayland/meson.build index 7e82513a..29270b58 100644 --- a/libweston/backend-wayland/meson.build +++ b/libweston/backend-wayland/meson.build @@ -10,7 +10,7 @@ srcs_wlwl = [ fullscreen_shell_unstable_v1_protocol_c, presentation_time_protocol_c, presentation_time_server_protocol_h, - xdg_shell_server_protocol_h, + xdg_shell_client_protocol_h, xdg_shell_protocol_c, ]