We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7c174a commit 48b5611Copy full SHA for 48b5611
tools/completions/Makefile.am
@@ -1,7 +1,8 @@
1
-PREFIX=/usr/share
+PREFIX=${datadir}
2
EXTRA_DIST = \
3
fish-completion.fish \
4
- zsh-completion.zsh
+ zsh-completion.zsh \
5
+ bash-completion.sh
6
7
.PHONY: install-zsh-completion
8
install-zsh-completion:
@@ -10,3 +11,7 @@ install-zsh-completion:
10
11
.PHONY: install-fish-completion
12
install-fish-completion:
13
install -Dm644 fish-completion.fish $(PREFIX)/fish/vendor_completions.d/chafa.fish
14
+
15
+.PHONY: install-bash-completion
16
+install-bash-completion:
17
+ install -Dm644 bash-completion.sh $(PREFIX)/bash-completion/completions/chafa
0 commit comments