From 0b93459147c57200caef6ea36e167eeef9a35adf Mon Sep 17 00:00:00 2001 From: Charlotte Meyer Date: Sun, 5 Jan 2020 00:02:58 +0000 Subject: [PATCH] Fix protocol names --- kiwmi/luak/ipc.c | 2 +- protocols/meson.build | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kiwmi/luak/ipc.c b/kiwmi/luak/ipc.c index 537a25e..536b016 100644 --- a/kiwmi/luak/ipc.c +++ b/kiwmi/luak/ipc.c @@ -10,7 +10,7 @@ #include #include -#include "kiwmi-ipc-server-protocol.h" +#include "kiwmi-ipc-protocol.h" #include "luak/luak.h" static void diff --git a/protocols/meson.build b/protocols/meson.build index 7400f03..05de04d 100644 --- a/protocols/meson.build +++ b/protocols/meson.build @@ -13,14 +13,14 @@ foreach protocol : protocols_server protocols_server_src += custom_target( protocol.underscorify() + '_server_c', input: protocol, - output: '@BASENAME@-server-protocol.c', + output: '@BASENAME@-protocol.c', command: [wayland_scanner_bin, 'private-code', '@INPUT@', '@OUTPUT@'], ) protocols_server_inc += custom_target( protocol.underscorify() + '_server_h', input: protocol, - output: '@BASENAME@-server-protocol.h', + output: '@BASENAME@-protocol.h', command: [wayland_scanner_bin, 'server-header', '@INPUT@', '@OUTPUT@'], ) endforeach