Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: install-info disappeared?
- X-seq: zsh-workers 12146
- From: Peter Stephenson <pws@xxxxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx (Zsh hackers list)
- Subject: Re: install-info disappeared?
- Date: Mon, 03 Jul 2000 17:42:46 +0100
- In-reply-to: "Your message of Mon, 03 Jul 2000 19:02:15 +0400." <000c01bfe4ff$acf84b50$21c9ca95@xxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
> I just noticed, that call to install-info disappeared from Zsh
> Makefiles.
My guess is that it disappeared when the $(tzsh) stuff appeared, which is
also when I think the original stuff for .exe handling in cygwin
mysteriously vanished.
This seems to put it back how it was in 3.1.6 with the necessary changes.
Index: Doc/Makefile.in
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/Makefile.in,v
retrieving revision 1.4
diff -u -r1.4 Makefile.in
--- Doc/Makefile.in 2000/06/08 14:36:25 1.4
+++ Doc/Makefile.in 2000/07/03 16:40:15
@@ -266,6 +266,10 @@
$(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 \
--
Peter Stephenson <pws@xxxxxxxxxxxxxxxxxxxxxxxxx>
Cambridge Silicon Radio, Unit 300, Science Park, Milton Road,
Cambridge, CB4 0XL, UK Tel: +44 (0)1223 392070
Messages sorted by:
Reverse Date,
Date,
Thread,
Author