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: Mon, 23 Oct 2000 13:09:14 -0400 From: Jason Tishler To: Carfield Yim Cc: cygwin AT sourceware DOT cygnus DOT com Subject: Re: [info] problem Message-ID: <20001023130914.B13955@dothill.com> References: <39F461D2 DOT 892AE028 AT programmer DOT net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="nPRRYyyujah67r1I" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39F461D2.892AE028@programmer.net>; from carfield@programmer.net on Tue, Oct 24, 2000 at 12:05:38AM +0800 Organization: Dot Hill Systems Corp. --nPRRYyyujah67r1I Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Carfield, On Tue, Oct 24, 2000 at 12:05:38AM +0800, Carfield Yim wrote: > I want to read some info document, but if I type something like: > > info gcc > > it reply: > info: dir: No such file or directory setup.exe does not automatically run install-info for you. Run the attached shell script -- it will generate the dir files for you. Jason -- Jason Tishler Director, Software Engineering Phone: +1 (732) 264-8770 x235 Dot Hill Systems Corporation Fax: +1 (732) 264-8798 82 Bethany Road, Suite 7 Email: Jason DOT Tishler AT dothill DOT com Hazlet, NJ 07730 USA WWW: http://www.dothill.com --nPRRYyyujah67r1I Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="mkinfo.sh" #!/bin/bash # $Id: mkinfo.sh,v 1.2 2000/10/20 15:21:29 jt Exp $ # Remove old done file, if necessary rm -f /etc/postinstall/$(basename $0).done # List of info directories BaseInfoDirs=(/usr /usr/local) InfoDirs=(${BaseInfoDirs[*]/%/\/info}) # Create/update dir files for InfoDir in ${InfoDirs[*]} do for InfoFile in $InfoDir/*info do install-info --info-dir $InfoDir $InfoFile done done --nPRRYyyujah67r1I Content-Type: text/plain; charset=us-ascii -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com --nPRRYyyujah67r1I--