Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Message-ID: <005e01c1cf4f$4f783ad0$5b46fea9@mchasecompaq> From: "Michael A Chase" To: "Robert Mark Bram" , "Cygwin" References: Subject: Re: Not all mans available Date: Tue, 19 Mar 2002 06:05:05 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 From: "Robert Mark Bram" To: "Cygwin" Sent: Tuesday, March 19, 2002 03:43 Subject: RE: Not all mans available > >So I guess that the right thing to do would be for the > >postinstall script for each package that includes info files > >to run install-info. Looks like many don't, including diff > >which doesn't have any postinstall script. So as a work > >around you'll have to build the dir file yourself. > > I don't suppose you could elaborate on this a little more could you? I would > like to try this out.. > > This doesn't fix up the man thing though does it? > > I have tried both "man diff" and "man read" on a Sun OS's Bash - can those > files be transferred? For GNU programs, info is the appropriate command. The man pages provided in SunOS are for the versions of the programs provided with SunOS not the versions in the Cygwin distribution. I found myself rebuilding /usr/info/dir often enough that it was worth adding a function to my .bashrc: function build_info { cwd=$PWD cd /usr/info for f in *.info; do echo $f; install-info $f dir; done /usr/sbin/makewhatis cd $cwd } -- Mac :}) ** I normally forward private questions to the appropriate mail list. ** Ask Smarter: http://www.tuxedo.org/~esr/faqs/smart-questions.html Give a hobbit a fish and he eats fish for a day. Give a hobbit a ring and he eats fish for an age. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/