From 8749661dc31a048f583bb70b919073251f23d08a Mon Sep 17 00:00:00 2001 From: Steven Seungcheol Lee Date: Thu, 10 Mar 2022 16:39:52 +0900 Subject: [PATCH] meson: bash-completion installation path is reverted orignal Makefile install in blow path $(DESTDIR)$(PREFIX)/share/bash-completion/completions/nvme Signed-off-by: Steven Seungcheol Lee --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 2e22d121..dafbaa07 100644 --- a/meson.build +++ b/meson.build @@ -253,7 +253,8 @@ executable( ################################################################################ install_data('completions/bash-nvme-completion.sh', - install_dir: datadir + '/bash-completion/completions/nvme') + rename: 'nvme', + install_dir: datadir + '/bash-completion/completions') install_data('completions/_nvme', install_dir: datadir + '/zsh/site-functions') -- 2.51.0