summaryrefslogtreecommitdiff
path: root/bash-completion
diff options
context:
space:
mode:
authorDhanuka Warusadura <csx@tuta.io>2021-03-18 13:50:01 +0530
committerDaiki Ueno <ueno@gnu.org>2021-03-21 17:51:24 +0000
commit8b1936b46f2d83b9672303cca432e6108f6956a9 (patch)
treeeb396112b47699e64817ecc4e2bd9d94667e74bc /bash-completion
parent7d6aacdc6628a7bf4aca5e0033db5e8e43fefeba (diff)
downloadlibsecret-8b1936b46f2d83b9672303cca432e6108f6956a9.tar.gz
Add meson option to override of default bashcompdir
These changes introduce a new meson option to disable installation of completion files into the system location.
Diffstat (limited to 'bash-completion')
-rw-r--r--bash-completion/meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/bash-completion/meson.build b/bash-completion/meson.build
index 9e10d9e..dbbf5d3 100644
--- a/bash-completion/meson.build
+++ b/bash-completion/meson.build
@@ -8,3 +8,6 @@ if bashcompdir == ''
warning('Will not install bash completion due to missing dependencies!')
endif
endif
+if bashcompdir != ''
+ install_data('secret-tool', install_dir: bashcompdir)
+endif