build: Fix typo in install dir for Z shell completions

Fallout from bafbbe81c9

https://github.com/containers/toolbox/pull/1055
https://github.com/containers/toolbox/pull/1118
This commit is contained in:
Ondřej Míchal 2022-05-20 15:37:36 +03:00 committed by Debarshi Ray
parent af2c5325ef
commit 9bdbb55741

View file

@ -27,7 +27,7 @@ completion_zsh = custom_target('zsh-completion',
command: [generate_completions_program, meson.global_source_root() / 'src', 'zsh'],
depends: [toolbox],
install: true,
install_dir: get_option('datadir') / 'zsh' / 'site_functions',
install_dir: get_option('datadir') / 'zsh' / 'site-functions',
output: '_toolbox')
completion_fish = custom_target('fish-completion',