diff options
author | Simon Ser <contact@emersion.fr> | 2020-04-21 15:19:24 +0200 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-04-21 15:26:45 +0200 |
commit | ab4f6421538a5fc4d539f638018aaf8b35a1f549 (patch) | |
tree | 92dd330265237d73e8775bf882af185daf9e6d46 /backend | |
parent | 0b882475adb07cdc96fe4a585819b28b102a2b81 (diff) |
build: use dicts instead of get_variable
Closes: https://github.com/swaywm/wlroots/issues/1963
Diffstat (limited to 'backend')
-rw-r--r-- | backend/wayland/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/wayland/meson.build b/backend/wayland/meson.build index a9692164..d23f114e 100644 --- a/backend/wayland/meson.build +++ b/backend/wayland/meson.build @@ -16,5 +16,5 @@ client_protos = [ ] foreach proto : client_protos - wlr_files += get_variable(proto.underscorify() + '_client_h') + wlr_files += protocols_client_header[proto] endforeach |