summaryrefslogtreecommitdiff
path: root/ports-mgmt/portlint/src
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2016-05-15 16:09:02 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2016-05-15 16:09:02 +0000
commit70ef64e730d6d0a832d050d8677f7ff791141783 (patch)
treef9fc5ce513d06410c5c182afa345a2166c7640b1 /ports-mgmt/portlint/src
parentUpdate devel/py-monotonic to version 1.1. (diff)
Make portlint not yelling at TIMESTAMP in distinfo
PR: 209522 Reported by: John W. O'Brien <john@saltant.com>
Notes
Notes: svn path=/head/; revision=415239
Diffstat (limited to 'ports-mgmt/portlint/src')
-rw-r--r--ports-mgmt/portlint/src/portlint.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports-mgmt/portlint/src/portlint.pl b/ports-mgmt/portlint/src/portlint.pl
index 8076a007a6c6..5b1ab914b063 100644
--- a/ports-mgmt/portlint/src/portlint.pl
+++ b/ports-mgmt/portlint/src/portlint.pl
@@ -398,7 +398,7 @@ sub checkdistinfo {
my ($tag, $path, $value) = ($1, $2, $3);
$records{$path}{$tag} = $value;
- if (!$algorithms{$tag} && $tag ne "SIZE") {
+ if (!$algorithms{$tag} && $tag ne "SIZE" && $tag ne "TIMESTAMP") {
&perror("FATAL", $file, $., "unsupported checksum algorithm ".
"found: $tag.");
}