diff options
Diffstat (limited to 'CVSROOT')
-rwxr-xr-x | CVSROOT/cfg.pm | 14 | ||||
-rwxr-xr-x | CVSROOT/commit_prep.pl | 7 |
2 files changed, 18 insertions, 3 deletions
diff --git a/CVSROOT/cfg.pm b/CVSROOT/cfg.pm index 62bf354e1ecc..0ffc67e330b8 100755 --- a/CVSROOT/cfg.pm +++ b/CVSROOT/cfg.pm @@ -12,7 +12,7 @@ package cfg; use strict; use vars qw($DEBUG $FILE_PREFIX $MAILADDRS $MAILBANNER $MAILCMD $MAIL_ON_DIR_CREATION $TMPDIR %TEMPLATE_HEADERS - $LAST_FILE $PID); + $LAST_FILE $PID $IDHEADER); ###################### @@ -58,6 +58,18 @@ $LAST_FILE = "$TMPDIR/$FILE_PREFIX.lastdir"; ); +###################### +### commit_prep.pl ### +###################### + +# WARNING: You will also need to be running the version of cvs that +# the FreeBSD project is using; I believe that we have some local patches +# that aren't in the main 'cvs' source. +# Additionally you'll need to tweak CVSROOT/options if you wish to use your +# own ident header. +$IDHEADER = 'FreeBSD'; # Our RCS header is '$ FreeBSD $', + + #################### ### log_accum.pl ### #################### diff --git a/CVSROOT/commit_prep.pl b/CVSROOT/commit_prep.pl index de3db1505d93..be8105430b20 100755 --- a/CVSROOT/commit_prep.pl +++ b/CVSROOT/commit_prep.pl @@ -45,8 +45,11 @@ $check_id = 0; # ############################################################ $ENTRIES = "CVS/Entries"; -$HEADER = 'FreeBSD'; # Our RCS header is '$ FreeBSD $', - # (without the spaces.) + + +# The "Id" header to check for. +my $HEADER = $cfg::IDHEADER; + ############################################################ # |