Skip to content

Commit

Permalink
Fix install location of openrc-service-script bash completion
Browse files Browse the repository at this point in the history
  • Loading branch information
williamh committed Jun 26, 2024
1 parent 4574b5d commit 3500653
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bash-completion/meson.build
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
if get_option('bash-completions')
bash_completions = [
'openrc',
'openrc-service-script',
'rc-service',
'rc-status',
'rc-update',
]

install_data(bash_completions,
install_dir : get_option('datadir') / 'bash-completion/completions')
install_data(
'openrc-service-script',
install_dir : get_option('sysconfdir') / 'bash_completion.d')
endif

0 comments on commit 3500653

Please sign in to comment.