Subject: Re: pkgsrc wierdness
To: Frederick Bruckman <fb@enteract.com>
From: Bill Studenmund <wrstuden@zembu.com>
List: port-mac68k
Date: 11/07/2000 16:13:58
On Tue, 7 Nov 2000, Frederick Bruckman wrote:

> Brainstorm -- remove the corrupted +SIZE_ALL files, or better yet, fix
> them up by hand. E.g.
> 
> 	echo 0 >foo
> 	cp foo /var/db/pkg/*/+SIZE_ALL

I think you want

echo 0 > foo
find /var/db/pkg -name +SIZE_ALL | xargs cp foo

Otherwise you will try to copy most of the +SIZE_ALL files onto the
last...

Take care,

Bill