mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 06:50:05 +01:00
Starting with meson v0.49.0, the "/" operator can be used instead of join_paths. Update meson to v0.49.0 and remove all calls to join_paths. Signed-off-by: José Expósito <jose.exposito89@gmail.com>
12 lines
282 B
Meson
12 lines
282 B
Meson
zshcompletiondir = get_option('zshcompletiondir')
|
|
if zshcompletiondir == ''
|
|
zshcompletiondir = get_option('datadir') / 'zsh' / 'site-functions'
|
|
endif
|
|
|
|
if zshcompletiondir != 'no'
|
|
install_data(
|
|
'_libinput',
|
|
install_dir: zshcompletiondir,
|
|
install_mode: 'rw-r--r--',
|
|
)
|
|
endif
|