summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorriz <riz>2005-04-07 18:31:09 +0000
committerriz <riz>2005-04-07 18:31:09 +0000
commita650f6a4267b0b21fa1339a42747d5b8c2b83ea8 (patch)
tree90b79c0e780be64dfea00d0cde6f79c240f17276 /pkgtools
parent42abb4a15657bc14ab31696b050a0a34108b5c9d (diff)
downloadpkgsrc-a650f6a4267b0b21fa1339a42747d5b8c2b83ea8.tar.gz
Update to 4.11:
Remove references to PLIST-mi, and substitute check for PLIST.common instead. Fixes pkg/29848 by me. Approved by wiz.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint/Makefile4
-rw-r--r--pkgtools/pkglint/files/pkglint.pl6
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile
index 0e1b020c4fa..e3a75f6a999 100644
--- a/pkgtools/pkglint/Makefile
+++ b/pkgtools/pkglint/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.226 2005/04/04 11:04:33 abs Exp $
+# $NetBSD: Makefile,v 1.227 2005/04/07 18:31:09 riz Exp $
#
-DISTNAME= pkglint-4.10
+DISTNAME= pkglint-4.11
CATEGORIES= pkgtools devel
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl
index 703192cf5cf..503ec10c652 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.136 2005/03/28 02:16:55 wiz Exp $
+# $NetBSD: pkglint.pl,v 1.137 2005/04/07 18:31:09 riz Exp $
#
# This version contains lots of changes necessary for NetBSD packages
# done by Hubert Feyrer <hubertf@netbsd.org>,
@@ -638,10 +638,10 @@ EOF
log_warning("$opt_packagedir/scripts", NO_LINE_NUMBER, "this directory and its contents are deprecated! Please call the script(s) explicitly from the corresponding target(s) in the pkg's Makefile.");
}
if (! -f "$opt_packagedir/$pkgdir/PLIST"
- and ! -f "$opt_packagedir/$pkgdir/PLIST-mi"
+ and ! -f "$opt_packagedir/$pkgdir/PLIST.common"
and ! $seen_PLIST_SRC
and ! $seen_NO_PKG_REGISTER ) {
- log_warning(NO_FILE, NO_LINE_NUMBER, "no PLIST or PLIST-mi, and PLIST_SRC and NO_PKG_REGISTER unset. Are you sure PLIST handling is ok?");
+ log_warning(NO_FILE, NO_LINE_NUMBER, "no PLIST or PLIST.common, and PLIST_SRC and NO_PKG_REGISTER unset. Are you sure PLIST handling is ok?");
}
if ($opt_committer) {
foreach my $wrkdir (<$opt_packagedir/work*>) {