diff options
author | wiz <wiz@pkgsrc.org> | 2012-01-02 18:01:00 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2012-01-02 18:01:00 +0000 |
commit | 41b38a634a9b461c1f254757f8fa34fbb60c556c (patch) | |
tree | 47c925c6ac8794e20220fd79b5985fd26a1ffce9 /textproc | |
parent | 6a233feef98acc283752cde8fcc259f7f29f9806 (diff) | |
download | pkgsrc-41b38a634a9b461c1f254757f8fa34fbb60c556c.tar.gz |
Allow 2012 in man page dates.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/mdoclint/Makefile | 4 | ||||
-rwxr-xr-x | textproc/mdoclint/files/mdoclint | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/textproc/mdoclint/Makefile b/textproc/mdoclint/Makefile index ca3b46ed8e2..d229e05721d 100644 --- a/textproc/mdoclint/Makefile +++ b/textproc/mdoclint/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2011/01/02 12:40:37 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2012/01/02 18:01:00 wiz Exp $ -DISTNAME= mdoclint-1.13 +DISTNAME= mdoclint-1.14 CATEGORIES= textproc MASTER_SITES= # none DISTFILES= # none diff --git a/textproc/mdoclint/files/mdoclint b/textproc/mdoclint/files/mdoclint index 09f7895e73d..0e9f5581e47 100755 --- a/textproc/mdoclint/files/mdoclint +++ b/textproc/mdoclint/files/mdoclint @@ -1,9 +1,9 @@ #!@PERL5@ # # $OpenBSD: mdoclint,v 1.14 2009/04/13 12:40:05 espie Exp $ -# $NetBSD: mdoclint,v 1.16 2011/01/02 12:40:37 wiz Exp $ +# $NetBSD: mdoclint,v 1.17 2012/01/02 18:01:00 wiz Exp $ # -# Copyright (c) 2001-2010 Thomas Klausner +# Copyright (c) 2001-2012 Thomas Klausner # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -161,7 +161,7 @@ my $valid_date_re; $valid_date_re = qr{\$Mdocdate\b}; } if (NETBSD) { - $valid_date_re = qr{(?:January|February|March|April|May|June|July|August|September|October|November|December)\s*[1-9][0-9]*,\s*(?:198[0-9]|199[0-9]|200[0-9]|201[01])$}o; + $valid_date_re = qr{(?:January|February|March|April|May|June|July|August|September|October|November|December)\s*[1-9][0-9]*,\s*(?:198[0-9]|199[0-9]|200[0-9]|201[0-2])$}o; } } |