On Mon, Dec 12, 2005 at 04:55:57PM -0500, Greg Troxel wrote:
> I went to cvs update and got errors from the checkout script.
> Savannah has restructured CVS:
> 
>   http://savannah.gnu.org/forum/forum.php?forum_id=4168
> 
> They say to do the following to convert a working copy:
> 
> find -path '.*/CVS/Root' -print0 | xargs -0 perl -i -p -e 
> 's/:ext:anoncvs\@(cvs\.)?s/:pserver:[EMAIL PROTECTED]/'
> 
> Without GNU find (e.g. on NetBSD):
> 
> find . -name Root -print0 | xargs -0 perl -i -p -e 
> 's/:ext:anoncvs\@(cvs\.)?s/:pserver:[EMAIL PROTECTED]/'
> 
> worked for me, but is slightly dangerous.
> 
> They renamed /cvsroot to /sources, so I also did:
> 
> find . -name Root -print0 | xargs -0 perl -i -p -e 's/cvsroot/sources/'
> 
> Also, checkout needs changing for the non-developer case.  I also
> removed the cvs login, since it insists on a password at every update
> which is inconvenient.  Probably the developer CVSROOT should change
> as well.
> 

Thanks.

I've applied your patch as well as the developer fix.

Eric


_______________________________________________
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to