From bc00cfcf2d9a00607949c2eff510592a13c73655 Mon Sep 17 00:00:00 2001 From: Steven Engler Date: Tue, 8 Mar 2022 21:56:51 -0500 Subject: [PATCH] meson: fixed sandbox violation error --- protocols/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/protocols/meson.build b/protocols/meson.build index df24a4e59..f418fc36d 100644 --- a/protocols/meson.build +++ b/protocols/meson.build @@ -36,13 +36,13 @@ foreach p : protocols xml = join_paths(p) wl_protos_src += custom_target( xml.underscorify() + '_server_c', - input: xml, + input: files(xml), output: '@BASENAME@-protocol.c', command: [wayland_scanner, 'private-code', '@INPUT@', '@OUTPUT@'], ) wl_protos_headers += custom_target( xml.underscorify() + '_server_h', - input: xml, + input: files(xml), output: '@BASENAME@-protocol.h', command: [wayland_scanner, 'server-header', '@INPUT@', '@OUTPUT@'], ) @@ -52,7 +52,7 @@ foreach p : client_protocols xml = join_paths(p) wl_protos_headers += custom_target( xml.underscorify() + '_client_h', - input: xml, + input: files(xml), output: '@BASENAME@-client-protocol.h', command: [wayland_scanner, 'client-header', '@INPUT@', '@OUTPUT@'], )