aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/Makefile.local
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-04-06 10:00:30 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-04-06 14:36:31 -0700
commitf89b3d16db90be99c3097c8dac0d95930cdd1f1d (patch)
tree39e349dce50eeda22dfa22d432295d1c97f12299 /emacs/Makefile.local
parent4c7ee0f016c2f79c332608ff94a38126dccf6ba2 (diff)
Makefiles: Eliminate the useless quiet_* functions.
With the original quiet function, there's an actual purpose (hiding excessively long compiler command lines so that warnings and errors from the compiler can be seen). But with things like quiet_symlink there's nothing quieter. In fact "SYMLINK" is longer than "ln -sf". So all this is doing is hiding the actual command from the user for no real benefit. The only actual reason we implemented the quiet_* functions was to be able to neatly right-align the command name and left-align the arguments. Let's give up on that, and just left-align everything, simplifying the Makefiles considerably. Now, the only instances of a captialized command name in the output is if there's some actually shortening of the command itself.
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 76cc64f9..51d045c3 100644
--- a/emacs/Makefile.local
+++ b/emacs/Makefile.local
@@ -14,8 +14,8 @@ emacs: $(emacs_bytecode)
.PHONY: install-emacs
install-emacs: install emacs
- $(call quiet_mkdir, $(DESTDIR)/$(emacs_lispdir))
- $(call quiet_install_data, $(emacs_sources) $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir))
+ mkdir -p $(DESTDIR)/$(emacs_lispdir)
+ install -m0644 $(emacs_sources) $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir)
@echo ""
@echo "The notmuch emacs client is now installed."
@echo ""