From dc19aecea072a8ab4a06388ba8660d88f2638526 Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Tue, 18 Oct 2022 19:06:16 +0100 Subject: Clean up meson deprecation warnings. --- meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 1620ca3..9f2dcec 100644 --- a/meson.build +++ b/meson.build @@ -147,7 +147,7 @@ endif # Generate the necessary Wayland headers / sources with wayland-scanner wayland_scanner = find_program( - wayland_scanner_dep.get_pkgconfig_variable('wayland_scanner'), + wayland_scanner_dep.get_variable(pkgconfig: 'wayland_scanner'), native: true ) @@ -198,7 +198,7 @@ if scdoc.found() input: 'doc/tofi.1.scd', output: output, command: [ - sh, '-c', '@0@ < @INPUT@ > @1@'.format(scdoc.path(), output) + sh, '-c', '@0@ < @INPUT@ > @1@'.format(scdoc.full_path(), output) ], install: true, install_dir: '@0@/man1'.format(mandir) @@ -223,7 +223,7 @@ if scdoc.found() input: 'doc/tofi.5.scd', output: output, command: [ - sh, '-c', '@0@ < @INPUT@ > @1@'.format(scdoc.path(), output) + sh, '-c', '@0@ < @INPUT@ > @1@'.format(scdoc.full_path(), output) ], install: true, install_dir: '@0@/man5'.format(mandir) -- cgit v1.2.3