mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
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.
This commit is contained in:
parent
435cd249a0
commit
f0ad36cb7f
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue