Subject: Re: lynx build asking for file to patch
To: Mark E. Perkins <perkinsm@bway.net>
From: Thomas Klausner <wiz@NetBSD.org>
List: tech-pkg
Date: 05/15/2004 23:41:43
On Sat, May 15, 2004 at 05:36:16PM -0400, Mark E. Perkins wrote:
> Attempting to build lynx from pkgsrc updated today ends up with:
> 
> 	File to patch:
> 
> A similar problem for OpenOffice was reported on netbsd-help, but that one 
> seems to be fixed.
> 
> Is there a quick workaround for this?

The patches look fine. You could try to find out which one
doesn't apply for you:

make clean
make extract
cd work*/lynx*
for i in /usr/pkgsrc/www/lynx/patches/p*; do
	patch < $i;
done

[You'll have to  do another ``make clean'' before you
next let pkgsrc try patching since the patch cookie will
be missing.]

 Thomas