aboutsummaryrefslogtreecommitdiffstats
path: root/CVSROOT/cfg.pm
diff options
context:
space:
mode:
Diffstat (limited to 'CVSROOT/cfg.pm')
-rwxr-xr-xCVSROOT/cfg.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/CVSROOT/cfg.pm b/CVSROOT/cfg.pm
index 7100779cc556..6816197d2993 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 $IDHEADER);
+ $LAST_FILE $PID $IDHEADER $UNEXPAND_RCSID);
######################
@@ -69,6 +69,11 @@ $LAST_FILE = "$TMPDIR/$FILE_PREFIX.lastdir";
# own ident header.
$IDHEADER = 'FreeBSD'; # Our RCS header is '$ FreeBSD $',
+# Contract any instances of $IDHEADER in the source file before committing.
+# This is useful because it means that expanded headers aren't stored in
+# the repository as part of the delta.
+$UNEXPAND_RCSID = 0;
+
####################
### log_accum.pl ###