From 47e9efb061dd84118fd18a14682b771009fb44fb Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Mon, 3 Jul 2000 16:51:18 +0000 Subject: 12146: reintroduce install_info code --- ChangeLog | 3 +++ Doc/Makefile.in | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 438fd80a2..41e1d5326 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2000-07-03 Peter Stephenson + * 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 diff --git a/Doc/Makefile.in b/Doc/Makefile.in index 1240069ad..51bf78415 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -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 \ -- cgit 1.4.1