Re: CVS update warning

2004-02-22 Thread Arvindh Rajesh Tamilmani
I didn't specify -kb when I added the images.
I suppose that's it.

$ cvs admin -kb file  # corrects the repository
$ cvs update -A file  # updates the working copy

should fix the problem.

But I wonder how -kCOPY got into the repository in the
first place.  Is CVSROOT/cvswrappers wrong with
something like:

*.gif -k 'COPY'

instead of 

*.gif -k 'b'

Mike

Arvindh


__
Do you Yahoo!?
Yahoo! Mail SpamGuard - Read only the mail you want.
http://antispam.yahoo.com/tools


Re: More IMCC bugs

2004-02-22 Thread Leopold Toetsch
Dan Sugalski [EMAIL PROTECTED] wrote:
 A .sub that's prototyped (Dunno about the non-prototyped case) that
 doesn't have a .pcc_begin_return/.pcc_end_return pair in it (empty is
 fine) will cause parrot to crash'n'burn. Subs without a designated
 return should be assumed to return nothing, the same as if an empty
 begin/end pair was specified.

Done.

leo


Re: CVS update warning

2004-02-22 Thread Michael Scott
Done, thanks.

On 22 Feb 2004, at 14:39, Arvindh Rajesh Tamilmani wrote:

I didn't specify -kb when I added the images.
I suppose that's it.
$ cvs admin -kb file  # corrects the repository
$ cvs update -A file  # updates the working copy
should fix the problem.

But I wonder how -kCOPY got into the repository in the
first place.  Is CVSROOT/cvswrappers wrong with
something like:
*.gif -k 'COPY'

instead of

*.gif -k 'b'

Mike
Arvindh

__
Do you Yahoo!?
Yahoo! Mail SpamGuard - Read only the mail you want.
http://antispam.yahoo.com/tools



Re: CVS update warning

2004-02-22 Thread Jeff Clites
On Feb 22, 2004, at 5:39 AM, Arvindh Rajesh Tamilmani wrote:

I didn't specify -kb when I added the images.
I suppose that's it.
$ cvs admin -kb file  # corrects the repository
$ cvs update -A file  # updates the working copy
should fix the problem.

But I wonder how -kCOPY got into the repository in the
first place.  Is CVSROOT/cvswrappers wrong with
something like:
*.gif -k 'COPY'

instead of

*.gif -k 'b'
There's a -m COPY option for cvswrappers, though it's not needed for 
non-text files:

	http://www.cvshome.org/docs/manual/cvs-1.11.13/cvs_18.html#SEC164

Probably a config error--maybe -k COPY instead of -m COPY or -k b.

JEff