summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorPhil Jones <philj56@gmail.com>2022-10-18 19:06:16 +0100
committerPhilip Jones <philj56@gmail.com>2022-10-18 19:09:09 +0100
commitdc19aecea072a8ab4a06388ba8660d88f2638526 (patch)
tree3ebde97fc686b98a47ff7acad5da367c32dd6411 /meson.build
parent01ddfe1510dd55830617590861b760dadc33dc85 (diff)
Clean up meson deprecation warnings.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build6
1 files 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)