Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: report after installing zsh-4.3.2



On Tue, Apr 11, 2006 at 03:42:08PM +0200, Pierre Albarede wrote:
> I had to run
> install-info zsh.info
> in order to make zsh appear in the info directory.

I assume that your version of install-info doesn't understand the
--version option?  The Doc/Makefile currently has that as a prerequisite
for using install-info:

    if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
      install-info --dir-file=$(DESTDIR)$(infodir)/dir \
        $(DESTDIR)$(infodir)/$(tzsh).info; \
    else true; fi

It looks like we need some improved logic there.  Perhaps just replacing
"true" with "(cd $(DESTDIR)$(infodir) && install-info $(tzsh).info)" and
letting that succeed or fail would be a good change?

..wayne..



Messages sorted by: Reverse Date, Date, Thread, Author