aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/Makefile.local
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-04-06 15:05:13 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-04-06 18:30:43 -0700
commitdfbec15b2388158693ab0dce0c7d348c4c5a98a5 (patch)
treee29c7fcf3a3fd23c209df1ec426494f83621c120 /emacs/Makefile.local
parent53fa1ed0a89f2965e387e41509b998dad1e7ab82 (diff)
Install emacs lisp files into a notmuch sub-directory of site-lisp.
Now that we have multiple emacs-lisp source files, it's just more polite this way.
Diffstat (limited to 'emacs/Makefile.local')
-rw-r--r--emacs/Makefile.local6
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/Makefile.local b/emacs/Makefile.local
index 52aca4ef..e34da0be 100644
--- a/emacs/Makefile.local
+++ b/emacs/Makefile.local
@@ -20,10 +20,10 @@ install: install-emacs
.PHONY: install-emacs
install-emacs:
- mkdir -p $(DESTDIR)/$(emacs_lispdir)
- install -m0644 $(emacs_sources) $(DESTDIR)$(emacs_lispdir)
+ mkdir -p $(DESTDIR)$(emacslispdir)
+ install -m0644 $(emacs_sources) $(DESTDIR)$(emacslispdir)
ifeq ($(HAVE_EMACS),1)
- install -m0644 $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir)
+ install -m0644 $(emacs_bytecode) $(DESTDIR)$(emacslispdir)
endif
CLEAN := $(CLEAN) $(emacs_bytecode)