This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch dev/dimmus/test
in repository efl.
View the commit online.
commit 94aac7e2fff64c01ca55abac93189b3023330b0d
Author: dimmus <dmitri.chudi...@gmail.com>
AuthorDate: Mon Oct 7 14:13:29 2024 +0500
meson: join_path - clean src/wayland_protocol
---
src/wayland_protocol/meson.build | 16 ++++++----------
1 file changed, 6 insertions(+), 10 deletions(-)
diff --git a/src/wayland_protocol/meson.build b/src/wayland_protocol/meson.build
index a61f8c8de3..b61379a6e0 100644
--- a/src/wayland_protocol/meson.build
+++ b/src/wayland_protocol/meson.build
@@ -11,25 +11,21 @@ wl_protocol_local = [
]
wl_unstable_protocol_sys = [
- join_paths('xdg-shell', 'xdg-shell-unstable-v6.xml'),
- join_paths('linux-dmabuf', 'linux-dmabuf-unstable-v1.xml'),
- join_paths('text-input', 'text-input-unstable-v1.xml'),
+ 'xdg-shell/xdg-shell-unstable-v6.xml',
+ 'linux-dmabuf/linux-dmabuf-unstable-v1.xml',
+ 'text-input/text-input-unstable-v1.xml',
]
wl_stable_protocol_sys = [
- join_paths('xdg-shell', 'xdg-shell.xml'),
+ 'xdg-shell/xdg-shell.xml',
]
foreach sys_protocol : wl_unstable_protocol_sys
- wl_protocol_local += [
- join_paths(_wayland_protocols.get_pkgconfig_variable('pkgdatadir'), 'unstable',
- sys_protocol)]
+ wl_protocol_local += _wayland_protocols.get_pkgconfig_variable('pkgdatadir') / 'unstable' / sys_protocol
endforeach
foreach sys_protocol : wl_stable_protocol_sys
- wl_protocol_local += [
- join_paths(_wayland_protocols.get_pkgconfig_variable('pkgdatadir'), 'stable',
- sys_protocol)]
+ wl_protocol_local += _wayland_protocols.get_pkgconfig_variable('pkgdatadir') / 'stable' / sys_protocol
endforeach
gen_obj_c = []
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.