On Mon, Dec 1, 2008 at 9:08 PM, M. Warner Losh <[EMAIL PROTECTED]> wrote:
> In message: <[EMAIL PROTECTED]>
>            Peter Wemm <[EMAIL PROTECTED]> writes:
> : Author: peter
> : Date: Tue Dec  2 02:26:15 2008
> : New Revision: 185539
> : URL: http://svn.freebsd.org/changeset/base/185539
> :
> : Log:
> :   Delete a bunch of empty mergeinfo records caused by local copies.
> :
> : Modified:
> :   head/sys/arm/at91/at91_machdep.c   (props changed)
> :   head/sys/arm/at91/board_bwct.c   (props changed)
> :   head/sys/arm/at91/board_hl200.c   (props changed)
> :   head/sys/arm/at91/board_kb920x.c   (props changed)
> :   head/sys/arm/at91/board_tsc4370.c   (props changed)
> :   head/sys/arm/at91/std.bwct   (props changed)
> :   head/sys/arm/at91/std.hl200   (props changed)
> :   head/sys/arm/at91/std.tsc4370   (props changed)
> :   head/sys/dev/mn/if_mn.c   (props changed)
> :   head/sys/kern/kern_cons.c   (props changed)
> :   head/sys/security/mac/mac_cred.c   (props changed)
> :   head/sys/security/mac_bsdextended/ugidfw_system.c   (props changed)
> :   head/sys/security/mac_bsdextended/ugidfw_vnode.c   (props changed)
>
> Is there some way the developer that does the copies can do this so
> you don't need to do this?

Yes.  It sounds strange, but specify a full repo-relative path.

instead of:
$ cd head/sys/kern
$ svn cp kern_tty.c kern_cons.c
$ ..stuff..
$ svn commit

you should do this:
$ cd head/sys/kern
$ svn cp $REPO/head/sys/kern/kern_tty.c kern_cons.c
$ ..stuff..
$ svn commit

The difference is that in the second form the command can chase
inherited mergeinfo around wherever it may lead and make sure that
side effects are accounted for.  In the first form, the command
doesn't have access to mergeinfo inheritance info so it has to make an
empty 'I have no idea!' mergeinfo to block any inheritance that
*might* be there.

-- 
Peter Wemm - [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; KI6FJV
"All of this is for nothing if we don't go to the stars" - JMS/B5
"If Java had true garbage collection, most programs would delete
themselves upon execution." -- Robert Sewell
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to