From 26b4cc4aad93e25dab1e1f38f19f1ae69cde389c Mon Sep 17 00:00:00 2001 From: Cédric Cabessa Date: Sun, 23 Jan 2011 14:33:43 +0100 Subject: configure: add options to disable emacs/zsh/bash and choose install dir. add --bashcompletiondir and --zshcompletiondir (like --emacslispdir) to choose installation dir for bash/zsh completion files Make some features optional: --without-emacs / --with-emacs=no do not install lisp file --without-bash-completion / --with-bash-completion=no do not install bash files --without-zsh-completion / --with-zsh-completion=no do not install zsh files By default, everything is enabled. You can reenable something with --with-feature=yes --- completion/Makefile.local | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'completion') diff --git a/completion/Makefile.local b/completion/Makefile.local index 6a6012d4..0b74c065 100644 --- a/completion/Makefile.local +++ b/completion/Makefile.local @@ -12,7 +12,11 @@ install: install-$(dir) install-$(dir): @echo $@ +ifeq ($(WITH_BASH),1) mkdir -p $(DESTDIR)$(bash_completion_dir) install -m0644 $(bash_script) $(DESTDIR)$(bash_completion_dir)/notmuch +endif +ifeq ($(WITH_ZSH),1) mkdir -p $(DESTDIR)$(zsh_completion_dir) install -m0644 $(zsh_script) $(DESTDIR)$(zsh_completion_dir)/notmuch +endif -- cgit v1.2.3