Subject: Re: NetBSD 1.6_BETA3 fails to build libc
To: Olaf Seibert <rhialto@polderland.nl>
From: Christian Groessler <cpg@aladdin.de>
List: current-users
Date: 06/28/2002 17:00:10
On 06/28/2002 04:33:42 PM ZE2 Olaf Seibert wrote:
>
>On Fri 28 Jun 2002 at 13:46:30 +0200, Ronald van der Pol wrote:
>> On Fri, Jun 28, 2002 at 00:35:36 -0400, Steven M. Bellovin wrote:
>>
>> > (A simple 'cvs update' fails if your original source tree came
>> > from the tarballs on releng.netbsd.org.  I wrote a tiny script to edit the
>> > myriad instances of CVS/Root back to sanity.)
>>
>> Sounds like a useful tool when switching between anoncvs servers. Could
>> you post it?
>
>This is what I once wrote:
>

I did it this way:

find . -type f | grep /CVS/Root$ | while read f; do echo "new Root contents" > $f; done
find . -type f | grep /CVS/Repository$ | while read f; do echo "new Repository contents" > $f; done


regards,
chris