summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--Doc/Makefile.in4
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 438fd80a2..41e1d5326 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
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 \