aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/Makefile.local
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-03-31 23:54:21 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-03-31 23:54:21 -0700
commit33d5cc415ec31d14f126dbb19f8538b04d2c1b49 (patch)
tree85fee2d4742489076a1821600c9f06cd79034314 /emacs/Makefile.local
parente7131a5983c4caff45c97e69b979002f0c1ff381 (diff)
Makefiles: Make the install rules quiet like the compilation rules.
The output from make is looking better all the time, (though the columns still aren't lined up).
Diffstat (limited to 'emacs/Makefile.local')
-rw-r--r--emacs/Makefile.local4
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/Makefile.local b/emacs/Makefile.local
index 6e7d2afd..bda3997a 100644
--- a/emacs/Makefile.local
+++ b/emacs/Makefile.local
@@ -6,8 +6,8 @@ emacs_bytecode := $(subst .el,.elc,$(emacs_sources))
emacs: $(emacs_bytecode)
install-emacs: install emacs
- install -d $(DESTDIR)/$(emacs_lispdir)
- install -m0644 $(emacs_sources) $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir)
+ $(call quiet_mkdir, $(DESTDIR)/$(emacs_lispdir))
+ $(call quiet_install_data, $(emacs_sources) $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir))
@echo ""
@echo "The notmuch emacs client is now installed."
@echo ""