From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Tue, 11 Apr 2006 08:46:31 -0700 From: Wayne Davison To: Pierre Albarede Cc: zsh-workers@sunsite.dk Subject: Re: report after installing zsh-4.3.2 Message-ID: <20060411154631.GD23613@dot.blorf.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Seq: zsh-workers 22413 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..