Mail Archives: cygwin/2000/10/23/13:10:55
--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--
- Raw text -