Subject: Re: How do I do a one-time patch to a package?
To: None <tech-pkg@netbsd.org>
From: David S. <davids@idiom.com>
List: tech-pkg
Date: 12/10/2002 18:46:22
> Hi again. I want to make a one-time patch to a C file in the racoon
> source. How do I do it so that the program gets rebuilt? "make clean"
> wipes out the work directory. Even if I modify one of the C files,
> "make build" doesn't do anything.
>
cd /usr/pkgsrc/security/racoon
make clean
make extract
cd work/... (and apply your patch)
cd /usr/pkgsrc/security/racoon
make
... should do it.
David S.