diff options
author | jlemon <jlemon@FreeBSD.org> | 2001-05-14 23:08:57 +0800 |
---|---|---|
committer | jlemon <jlemon@FreeBSD.org> | 2001-05-14 23:08:57 +0800 |
commit | c55cd183e329ae70cc8aaea9e5d71f027d71b6ca (patch) | |
tree | 0772f891608b7d1cf27598440489a446af3d146c | |
parent | 9528d6a97a223340ba040b9c077cf6fa7ed00328 (diff) | |
download | freebsd-ports-gnome-c55cd183e329ae70cc8aaea9e5d71f027d71b6ca.tar.gz freebsd-ports-gnome-c55cd183e329ae70cc8aaea9e5d71f027d71b6ca.tar.zst freebsd-ports-gnome-c55cd183e329ae70cc8aaea9e5d71f027d71b6ca.zip |
Make the "MFC after" syntax check match the claimed syntax.
Permit 'month[s]' as well, while I'm here; other scripts should
also be updated to accept this as well.
-rwxr-xr-x | CVSROOT/logcheck | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CVSROOT/logcheck b/CVSROOT/logcheck index ecb8d4cbeb35..b6af99c6714f 100755 --- a/CVSROOT/logcheck +++ b/CVSROOT/logcheck @@ -30,7 +30,7 @@ my %HEADERS = ( "Obtained from" => '.*', "Approved by" => '.*', "PR" => '.*', - "MFC after" => '[\d]+( (days|weeks))?' + "MFC after" => '\d+(?:\s+(?:days?|weeks?|months?))?' ); |