From ac0b15a26372220ddd20e6d5eb011b41296aa76e Mon Sep 17 00:00:00 2001 From: rillig Date: Thu, 8 Jun 2006 17:38:56 +0000 Subject: Packages that install info files should set INFO_FILES. --- pkgtools/pkglint/files/pkglint.pl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'pkgtools') diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 23b2397cbd0..018fcc6db03 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -1,5 +1,5 @@ #! @PERL@ -# $NetBSD: pkglint.pl,v 1.613 2006/06/08 17:21:28 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.614 2006/06/08 17:38:56 rillig Exp $ # # pkglint - static analyzer and checker for pkgsrc packages @@ -5746,6 +5746,11 @@ sub checkfile_PLIST($) { } elsif ($text eq "info/dir") { $line->log_error("\"info/dir\" must not be listed. Use install-info to add/remove an entry."); + } elsif ($text =~ qr"^info/.+$") { + if (defined($varuse) && !exists($makevar->{"INFO_FILES"})) { + $line->log_warning("Packages that install info files should set INFO_FILES."); + } + } elsif (defined($effective_pkgbase) && $text =~ qr"^lib/\Q${effective_pkgbase}\E/") { # Fine. -- cgit v1.2.3