12146: reintroduce install_info code

This commit is contained in:
Peter Stephenson 2000-07-03 16:51:18 +00:00
parent 044e8e054c
commit 47e9efb061
2 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,8 @@
2000-07-03 Peter Stephenson <pws@cambridgesiliconradio.com>
* 12146: Doc/Makefile.in: reintroduce mysteriously disappeared
code do install info files in directory.
* 12140: Completion/Core/compinit, Completion/Core/compinstall,
Doc/Zsh/compsys.yo: compinstall calls compinit after styles
are defined; compinit checks for _expand completer and if

View file

@ -266,6 +266,10 @@ install.info: texi
$(INSTALL_DATA) $$file $(DESTDIR)$(infodir) || exit 1; \
done \
); then \
if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
install-info --dir-file=$(DESTDIR)$(infodir)/dir \
$(infodir)/$(tzsh).info; \
else true; fi; \
rm -rf infodir; \
exit 0; \
else \