diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2006-08-06 22:36:45 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2006-08-06 22:36:45 +0000 |
commit | 439fd9185cc283925332a8601d076f4cb2bea953 (patch) | |
tree | d17b36701e04ee7e1f8e3c48383b437e1e1fa1f3 /ports-mgmt/portlint/src/portlint.pl | |
parent | 73cd30087a8fa6ec931dee113dea5bac1ca3fe5a (diff) |
Notes
Diffstat (limited to 'ports-mgmt/portlint/src/portlint.pl')
-rw-r--r-- | ports-mgmt/portlint/src/portlint.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports-mgmt/portlint/src/portlint.pl b/ports-mgmt/portlint/src/portlint.pl index c4c3ef8089cd..bbb03e8ce828 100644 --- a/ports-mgmt/portlint/src/portlint.pl +++ b/ports-mgmt/portlint/src/portlint.pl @@ -17,7 +17,7 @@ # OpenBSD and NetBSD will be accepted. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.122 2006/08/06 21:42:40 marcus Exp $ +# $MCom: portlint/portlint.pl,v 1.123 2006/08/06 22:36:21 marcus Exp $ # use vars qw/ $opt_a $opt_A $opt_b $opt_C $opt_c $opt_g $opt_h $opt_t $opt_v $opt_M $opt_N $opt_B $opt_V /; @@ -882,7 +882,7 @@ sub checkplist { } } - if ($item_count < $numpitems) { + if (!$seen_special && $item_count < $numpitems) { &perror("WARN", $file, -1, "There are only $item_count items in the plist. Consider using PLIST_FILES instead of pkg-plist when installing less than $numpitems items."); } |