summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint/files/pkglint.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl
index 276bcc5d950..3fada8b6127 100644
--- a/pkgtools/pkglint/files/pkglint.pl
+++ b/pkgtools/pkglint/files/pkglint.pl
@@ -11,7 +11,7 @@
# Freely redistributable. Absolutely no warranty.
#
# From Id: portlint.pl,v 1.64 1998/02/28 02:34:05 itojun Exp
-# $NetBSD: pkglint.pl,v 1.130 2005/02/15 21:07:01 rillig Exp $
+# $NetBSD: pkglint.pl,v 1.131 2005/02/16 00:21:17 rillig Exp $
#
# This version contains lots of changes necessary for NetBSD packages
# done by Hubert Feyrer <hubertf@netbsd.org>,
@@ -862,7 +862,7 @@ sub checkfile_PLIST($) {
if ($line->text =~ qr"^[\w\d]") {
if (defined($last_file_seen)) {
if ($last_file_seen gt $line->text) {
- log_error($line->file, $line->lineno, $line->text." must be sorted before ${last_file_seen}.");
+ log_warning($line->file, $line->lineno, $line->text." should be sorted before ${last_file_seen}.");
}
}
$last_file_seen = $line->text;