aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tomi Ollila <tomi.ollila@iki.fi>2014-05-11 00:36:43 +0300
committerGravatar David Bremner <david@tethera.net>2014-06-15 15:40:51 -0300
commitf0ad36cb7f400f476ada451b683e1d272de7353b (patch)
tree965ab5e391bbb3bb4e7513f839b7e6f5ddd3e2d8 /emacs
parent435cd249a014b37ecfedf4d38a3a6b6471c2730a (diff)
emacs install: make sure all components to be installed are there
`make install-emacs` will copy $(emacs_sources), $(emacs_images) and $(emacs_bytecode) to their target directories. $(emacs_bytecode) was already a prerequisite of make install-emacs as these obviously needed to be build. Until a while ago all of $(emacs_sources) was available in the repository, but now it includes `notmuch-version.el` which is generated. In the future we may have generated emacs images too.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/Makefile.local2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/Makefile.local b/emacs/Makefile.local
index dcb49953..c0d6b190 100644
--- a/emacs/Makefile.local
+++ b/emacs/Makefile.local
@@ -69,7 +69,7 @@ install: install-emacs
endif
.PHONY: install-emacs
-install-emacs:
+install-emacs: $(emacs_sources) $(emacs_images)
mkdir -p "$(DESTDIR)$(emacslispdir)"
install -m0644 $(emacs_sources) "$(DESTDIR)$(emacslispdir)"
ifeq ($(HAVE_EMACS),1)