Makefile: Create elisp install directory explicitly

When doing a DESTDIR install, this directory likely won't exist, and
installing notmuch.el will fail.

See 0d4b5292
This commit is contained in:
Ingmar Vanhassel 2009-11-19 02:45:44 +01:00 committed by Carl Worth
parent ec7a47d756
commit aa8c2224ee

View file

@ -25,7 +25,7 @@ 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)/$(prefix)/share/emacs/site-lisp/ $(DESTDIR)/etc/bash_completion.d/ ; \
do \
install -d $$d ; \
done ;