build: use Dependency.get_variable instead of get_pkgconfig_variable

Dependency.get_pkgconfig_variable has been deprecated.
This commit is contained in:
Simon Ser 2021-06-25 16:24:22 +02:00
parent 8348178c66
commit 5f3773f21e
2 changed files with 9 additions and 9 deletions

View file

@ -1,9 +1,9 @@
wl_protocol_dir = wayland_protos.get_pkgconfig_variable('pkgdatadir')
wl_protocol_dir = wayland_protos.get_variable(pkgconfig: 'pkgdatadir')
wayland_scanner_dep = dependency('wayland-scanner', required: false, native: true)
if wayland_scanner_dep.found()
wayland_scanner = find_program(
wayland_scanner_dep.get_pkgconfig_variable('wayland_scanner'),
wayland_scanner_dep.get_variable(pkgconfig: 'wayland_scanner'),
native: true,
)
else