mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +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
|
||||
bash_completion_dir = /etc/bash_completion.d
|
||||
|
|
|
@ -27,14 +27,14 @@ notmuch.1.gz: notmuch.1
|
|||
|
||||
install: all notmuch.1.gz
|
||||
for d in $(DESTDIR)$(prefix)/bin/ $(DESTDIR)$(prefix)/share/man/man1 \
|
||||
$(DESTDIR)/etc/bash_completion.d/ ; \
|
||||
$(DESTDIR)$(bash_completion_dir) ; \
|
||||
do \
|
||||
install -d $$d ; \
|
||||
done ;
|
||||
install notmuch $(DESTDIR)$(prefix)/bin/
|
||||
install -m0644 notmuch.1.gz $(DESTDIR)$(prefix)/share/man/man1/
|
||||
install contrib/notmuch-completion.bash \
|
||||
$(DESTDIR)/etc/bash_completion.d/notmuch
|
||||
$(DESTDIR)$(bash_completion_dir)/notmuch
|
||||
|
||||
install-emacs: install emacs
|
||||
for d in $(DESTDIR)/$(emacs_lispdir) ; \
|
||||
|
|
Loading…
Reference in a new issue