diff options
author | joe <joe@FreeBSD.org> | 2001-08-19 21:10:47 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-08-19 21:10:47 +0800 |
commit | 9aa763c5864ac5a7c8aa6f3185eb41e669c74cfa (patch) | |
tree | e9ef84929a7b653884838963c5cd2b078ac0d9a3 /CVSROOT/cfg.pm | |
parent | dd6c25085c179beb50c6720ea758c9d930dd1839 (diff) | |
download | freebsd-ports-gnome-9aa763c5864ac5a7c8aa6f3185eb41e669c74cfa.tar.gz freebsd-ports-gnome-9aa763c5864ac5a7c8aa6f3185eb41e669c74cfa.tar.zst freebsd-ports-gnome-9aa763c5864ac5a7c8aa6f3185eb41e669c74cfa.zip |
Move the definition of our $FreeBSD$ header into the config file.
Diffstat (limited to 'CVSROOT/cfg.pm')
-rwxr-xr-x | CVSROOT/cfg.pm | 14 |
1 files changed, 13 insertions, 1 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 ### #################### |