blob: be62d1ae5dddded232843406b001d80c15e91fe0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if get_option('bash-completions')
bash_completions = [
'openrc',
'rc-service',
'rc-status',
'rc-update',
]
install_data(bash_completions,
install_dir : get_option('datadir') / 'bash-completion/completions')
endif
|