From 8a725ec951ce456af7bb313a90bcf512a4efa738 Mon Sep 17 00:00:00 2001 From: Daniel Bermond Date: Thu, 4 Jun 2020 21:12:09 +0000 Subject: vulkan/wayland: fix another build breakage Commit 07b0c18 introduced some build breakages. Some breakages were fixed on c1fc535 and a1adafe. This one is still remaining. This commit fixes the following build error: [153/521] Compiling video/out/vulkan/context_wayland.c ../video/out/vulkan/context_wayland.c:26:10: fatal error: video/out/wayland/presentation-time.h: No such file or directory 26 | #include "video/out/wayland/presentation-time.h" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. Relevant to: #7802 --- video/out/vulkan/context_wayland.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/out/vulkan/context_wayland.c b/video/out/vulkan/context_wayland.c index ffe1e0facc..fa5994d280 100644 --- a/video/out/vulkan/context_wayland.c +++ b/video/out/vulkan/context_wayland.c @@ -23,7 +23,7 @@ #include "utils.h" // Generated from presentation-time.xml -#include "video/out/wayland/presentation-time.h" +#include "generated/wayland/presentation-time.h" struct priv { struct mpvk_ctx vk; -- cgit v1.2.3