diff options
author | Simon Ser <contact@emersion.fr> | 2022-10-03 22:58:13 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2022-10-03 22:58:13 +0200 |
commit | 03ae934d6583e982ebc397fa296d53034c7a2370 (patch) | |
tree | 5e16ff9c1309d83e075f6adfb22104b3cf2465a0 | |
parent | c60529087d485fd53be34b86e70ca4ca01bc7a8d (diff) |
build: alphabetically sort list of staging protocols
This helps with merge conflicts when a protocol is merged. This is
also more consistent with the other protocol lists above.
Signed-off-by: Simon Ser <contact@emersion.fr>
-rw-r--r-- | meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build index 8e4059e..772854a 100644 --- a/meson.build +++ b/meson.build @@ -36,12 +36,12 @@ unstable_protocols = { } staging_protocols = { - 'xdg-activation': ['v1'], + 'content-type': ['v1'], 'drm-lease': ['v1'], + 'ext-idle-notify': ['v1'], 'ext-session-lock': ['v1'], 'single-pixel-buffer': ['v1'], - 'ext-idle-notify': ['v1'], - 'content-type': ['v1'], + 'xdg-activation': ['v1'], } protocol_files = [] |