From owner-cvs-user Sun Jan 12 07:35:45 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id HAA02117 for cvs-user-outgoing; Sun, 12 Jan 1997 07:35:45 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id HAA02109; Sun, 12 Jan 1997 07:35:38 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id CAA15358; Mon, 13 Jan 1997 02:34:37 +1100 Date: Mon, 13 Jan 1997 02:34:37 +1100 From: Bruce Evans Message-Id: <199701121534.CAA15358@godzilla.zeta.org.au> To: cvs-all@freefall.freebsd.org, CVS-committers@freefall.freebsd.org, cvs-user@freefall.freebsd.org, jmacd@freefall.freebsd.org Subject: Re: cvs commit: src/contrib/texinfo/util install-info.c Sender: owner-cvs-user@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Modified: contrib/texinfo/util install-info.c > Log: > I added both features Peter Wemm requested. First, the new option > --forceentry=TEXT will override any entries contained in the info > file. Second, I made it recognize that "gmp" and "gmp.info" are > the same when looking for whether the info file being installed is > already installed. I need it to recognise that /dev/stdin may be the same file as "gmp", so that `gunzip < foo.info.gz | install-info ... /dev/stdin' works. I think it should never check the input file name. The name of the entry is given in the args or in the file, and it's reasonable for the input file name to be different if the file isn't installed. Perhaps install-info was only intended for use with installed files? Then the check makes sense, but the lack of gunzip support is still inconvenient. Bruce