mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 15:21:41 +01:00
Make bash completion directory configurable.
Some systems install completion scripts in /usr/share/bash-completion, make the location configurable from Makefile.config.
This commit is contained in:
parent
3ae12b1e28
commit
a8e0d4f25f
2 changed files with 3 additions and 2 deletions
|
@ -1 +1,2 @@
|
||||||
prefix = /usr/local
|
prefix = /usr/local
|
||||||
|
bash_completion_dir = /etc/bash_completion.d
|
||||||
|
|
|
@ -27,14 +27,14 @@ notmuch.1.gz: notmuch.1
|
||||||
|
|
||||||
install: all notmuch.1.gz
|
install: all notmuch.1.gz
|
||||||
for d in $(DESTDIR)$(prefix)/bin/ $(DESTDIR)$(prefix)/share/man/man1 \
|
for d in $(DESTDIR)$(prefix)/bin/ $(DESTDIR)$(prefix)/share/man/man1 \
|
||||||
$(DESTDIR)/etc/bash_completion.d/ ; \
|
$(DESTDIR)$(bash_completion_dir) ; \
|
||||||
do \
|
do \
|
||||||
install -d $$d ; \
|
install -d $$d ; \
|
||||||
done ;
|
done ;
|
||||||
install notmuch $(DESTDIR)$(prefix)/bin/
|
install notmuch $(DESTDIR)$(prefix)/bin/
|
||||||
install -m0644 notmuch.1.gz $(DESTDIR)$(prefix)/share/man/man1/
|
install -m0644 notmuch.1.gz $(DESTDIR)$(prefix)/share/man/man1/
|
||||||
install contrib/notmuch-completion.bash \
|
install contrib/notmuch-completion.bash \
|
||||||
$(DESTDIR)/etc/bash_completion.d/notmuch
|
$(DESTDIR)$(bash_completion_dir)/notmuch
|
||||||
|
|
||||||
install-emacs: install emacs
|
install-emacs: install emacs
|
||||||
for d in $(DESTDIR)/$(emacs_lispdir) ; \
|
for d in $(DESTDIR)/$(emacs_lispdir) ; \
|
||||||
|
|
Loading…
Reference in a new issue