summaryrefslogtreecommitdiff
path: root/emacs/Makefile.local
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/Makefile.local')
-rw-r--r--emacs/Makefile.local10
1 files changed, 2 insertions, 8 deletions
diff --git a/emacs/Makefile.local b/emacs/Makefile.local
index 17ede86..6e7d2af 100644
--- a/emacs/Makefile.local
+++ b/emacs/Makefile.local
@@ -6,14 +6,8 @@ emacs_bytecode := $(subst .el,.elc,$(emacs_sources))
emacs: $(emacs_bytecode)
install-emacs: install emacs
- for d in $(DESTDIR)/$(emacs_lispdir) ; \
- do \
- install -d $$d ; \
- done ;
- for f in $(emacs_sources) $(emacs_bytecode); \
- do \
- install -m0644 $$f $(DESTDIR)$(emacs_lispdir) ;\
- done;
+ install -d $(DESTDIR)/$(emacs_lispdir)
+ install -m0644 $(emacs_sources) $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir)
@echo ""
@echo "The notmuch emacs client is now installed."
@echo ""