Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin AT sources DOT redhat DOT com Date: Tue, 05 Dec 2000 13:47:51 +0000 From: David Evans Subject: Re: Gettext distro replaces /usr/info/dir To: cygwin AT sources DOT redhat DOT com Message-id: <3A2C8187.4ABD146B@ix.netcom.com> MIME-version: 1.0 X-Mailer: Mozilla 4.76 [en] (Win98; U) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit X-Accept-Language: en Given that I was already in /usr/info looking into why there were so few entries in the info menu, I used: 'ls' *info |xargs --max-args=1 install-info --dir-file=dir This appeared to be needed due to install-info's limitation to only one input file. The following, more generic solutions, would also work: find /usr/info -name "*.info" -type f -print | xargs --max-args=1 install-info --dir-file=/usr/info/dir or find / -name "*.info" -type f -print | xargs --max-args=1 install-info --dir-file=/usr/info/dir I tried it with dir.info, but the existence of that file causes "info" to core dump on my machine. a bit more testing... Ahh... That's not quite right. The existence of _both_ /usr/info/dir _and_ /usr/info/dir.info (both with valid data) causes the core dump. -Dave -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com