Clean up small error in the ncvs code that was causing rcs co to be
called with -K-Keoptions -Kioptions. This should fix the problem with $Id$ still getting changed. I am also install both ncvs and ocvs on freefall with this change as ocvs still had the bug with -I \! which I fixed but did not reinstall.
This commit is contained in:
parent
e4d7745b19
commit
e189281415
@ -222,8 +222,10 @@ checkout (argc, argv)
|
||||
argv += optind;
|
||||
|
||||
#ifdef FREEBSD_DEVELOPER
|
||||
if (!K_flag && freebsd)
|
||||
K_flag = "-KeAuthor,Date,Header,Id,Locker,Log,RCSfile,Revision,Source,State -KiFreeBSD";
|
||||
if (!K_flag && freebsd) {
|
||||
/* XXX Note: The leading -K is not needed, it gets added later! */
|
||||
K_flag = "eAuthor,Date,Header,Id,Locker,Log,RCSfile,Revision,Source,State -KiFreeBSD";
|
||||
}
|
||||
#endif /* FREEBSD_DEVELOPER */
|
||||
if (shorten == -1)
|
||||
shorten = 0;
|
||||
|
@ -190,8 +190,10 @@ update (argc, argv)
|
||||
argv += optind;
|
||||
|
||||
#ifdef FREEBSD_DEVELOPER
|
||||
if (!K_flag && freebsd)
|
||||
K_flag = "-KeAuthor,eDate,eHeader,eId,eLocker,eLog,eRCSfile,eRevision,eSource,eState,iFreeBSD";
|
||||
if (!K_flag && freebsd) {
|
||||
/* XXX Note: The leading -K is not needed, it gets added later! */
|
||||
K_flag = "eAuthor,eDate,eHeader,eId,eLocker,eLog,eRCSfile,eRevision,eSource,eState,iFreeBSD";
|
||||
}
|
||||
#endif /* FREEBSD_DEVELOPER */
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user