From 8c671a17c04a4fa2104864cea8d18e84a7b516e9 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 31 Mar 2010 22:59:30 -0700 Subject: Makefiles: Eliminate shell for loops in rule definitions. These just made the output look so ugly, and weren't actually making the rule definitions any simpler. Good riddance. --- emacs/Makefile.local | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'emacs/Makefile.local') diff --git a/emacs/Makefile.local b/emacs/Makefile.local index 17ede863..6e7d2afd 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 "" -- cgit v1.2.3