diff options
author | wiz <wiz@pkgsrc.org> | 2009-03-02 10:24:54 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-03-02 10:24:54 +0000 |
commit | 747d98cb159b1f7a7c482f9d428982304cbcf740 (patch) | |
tree | 56bb526f6c2da9e8d3a4b54b349643dfd65f4aab /textproc/mdoclint | |
parent | 86dfd52841b9433168c0a4db3c76ff66d71f899b (diff) | |
download | pkgsrc-747d98cb159b1f7a7c482f9d428982304cbcf740.tar.gz |
Recognize 2009 in Dd.
Diffstat (limited to 'textproc/mdoclint')
-rw-r--r-- | textproc/mdoclint/Makefile | 4 | ||||
-rwxr-xr-x | textproc/mdoclint/files/mdoclint | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/textproc/mdoclint/Makefile b/textproc/mdoclint/Makefile index 3c9f8648766..c0535552b1b 100644 --- a/textproc/mdoclint/Makefile +++ b/textproc/mdoclint/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2009/03/02 09:39:53 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2009/03/02 10:24:54 wiz Exp $ -DISTNAME= mdoclint-1.0 +DISTNAME= mdoclint-1.1 CATEGORIES= textproc MASTER_SITES= # none DISTFILES= # none diff --git a/textproc/mdoclint/files/mdoclint b/textproc/mdoclint/files/mdoclint index 304618ab7ba..3fafb3c6011 100755 --- a/textproc/mdoclint/files/mdoclint +++ b/textproc/mdoclint/files/mdoclint @@ -1,7 +1,7 @@ #!@PERL5@ # # $OpenBSD: mdoclint,v 1.13 2008/12/31 10:55:11 espie Exp $ -# $NetBSD: mdoclint,v 1.1.1.1 2009/03/01 21:25:39 wiz Exp $ +# $NetBSD: mdoclint,v 1.2 2009/03/02 10:24:54 wiz Exp $ # # Copyright (c) 2001-2009 Thomas Klausner # All rights reserved. @@ -157,7 +157,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[012345678])$}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])$}o; } } |