diff options
author | peter <peter@FreeBSD.org> | 2000-02-13 04:04:29 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-02-13 04:04:29 +0000 |
commit | ce6cf7cfc2dbef573a1771a08f4ed3c3da5c9c32 (patch) | |
tree | 6ecdfdff9697d2b5e06e4ee69d60cd98802f595b /CVSROOT/logcheck | |
parent | 3116f2842201e6784782aef05dec128a55e65944 (diff) | |
download | FreeBSD-ports-ce6cf7cfc2dbef573a1771a08f4ed3c3da5c9c32.zip FreeBSD-ports-ce6cf7cfc2dbef573a1771a08f4ed3c3da5c9c32.tar.gz |
Update the commit scripts to understand 'Approved by:' and kill cvsedit.
Diffstat (limited to 'CVSROOT/logcheck')
-rwxr-xr-x | CVSROOT/logcheck | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CVSROOT/logcheck b/CVSROOT/logcheck index e9e7083..fdec5db 100755 --- a/CVSROOT/logcheck +++ b/CVSROOT/logcheck @@ -18,10 +18,10 @@ $filename = $ARGV[0]; $tmpfile = $filename . "tmp"; open(IN, "< $filename") || - die "cvsedit: Cannot open for reading: $filename: $!\n"; + die "logcheck: Cannot open for reading: $filename: $!\n"; open(OUT, "> $tmpfile") || - die "cvsedit: Cannot open for writing: $tmpfile: $!\n"; + die "logcheck: Cannot open for writing: $tmpfile: $!\n"; # In-place edit the result of the user's edit on the file. $blank = 0; # true if the last line was blank @@ -46,6 +46,7 @@ while(<IN>) { if (/^Reviewed by:$/i || /^Submitted by:$/i || /^Obtained from:$/i || + /^Approved by:$/i || /^PR:$/i) { next; } |