mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
doc: install info files in elpa package
The duplication of effort in installing into different places seems unavoidable; or more precisely not worth avoiding by more extensive gnu-make-isms.
This commit is contained in:
parent
7a6d4a0852
commit
95f441b06b
1 changed files with 7 additions and 2 deletions
|
@ -80,9 +80,14 @@ endif
|
|||
|
||||
elpa: $(ELPA_FILE)
|
||||
|
||||
notmuch-emacs-%.tar: ${elpa_sources}
|
||||
ELPA_DIR=.elpa-build/notmuch-${ELPA_VERSION}
|
||||
notmuch-emacs-%.tar: ${elpa_sources} build-info
|
||||
mkdir -p .elpa-build/notmuch-${ELPA_VERSION}
|
||||
cp ${elpa_sources} .elpa-build/notmuch-${ELPA_VERSION}
|
||||
cp ${elpa_sources} ${ELPA_DIR}
|
||||
ifeq ($(HAVE_SPHINX)$(HAVE_MAKEINFO)$(HAVE_INSTALL_INFO),111)
|
||||
cp ${INFO_INFO_FILES} ${ELPA_DIR}
|
||||
for file in ${INFO_INFO_FILES}; do install-info $$file ${ELPA_DIR}/dir; done
|
||||
endif
|
||||
tar -C .elpa-build -cf $@ notmuch-${ELPA_VERSION}
|
||||
rm -r .elpa-build
|
||||
|
||||
|
|
Loading…
Reference in a new issue