diff options
author | abs <abs> | 2002-02-27 11:20:59 +0000 |
---|---|---|
committer | abs <abs> | 2002-02-27 11:20:59 +0000 |
commit | 5aab3ebb9707117b577ed8b5e7f179fc75f89c99 (patch) | |
tree | c51574893bb0cf16ccc87ce595f99c05f89197a2 /pkgtools | |
parent | 97b5fb74a0e8574d7aed0da86be4ff54c38e19d3 (diff) | |
download | pkgsrc-5aab3ebb9707117b577ed8b5e7f179fc75f89c99.tar.gz |
Update pkglint to 3.23:
Correct inverted logic for DYNAMIC_MASTER_SITES check
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile index 36dff2398cc..8c08cbde86d 100644 --- a/pkgtools/pkglint/Makefile +++ b/pkgtools/pkglint/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.126 2002/02/13 08:42:11 abs Exp $ +# $NetBSD: Makefile,v 1.127 2002/02/27 11:20:59 abs Exp $ # -DISTNAME= pkglint-3.22 +DISTNAME= pkglint-3.23 CATEGORIES= pkgtools devel MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 69ca44f43a1..2bb84b41ada 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -12,7 +12,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.64 2002/02/13 08:42:12 abs Exp $ +# $NetBSD: pkglint.pl,v 1.65 2002/02/27 11:20:59 abs Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by Hubert Feyrer <hubertf@netbsd.org>, @@ -896,7 +896,7 @@ EOF print "OK: non-URL \"$i\" ok.\n" if ($verbose); } - if ($tmp !~ /\nDYNAMIC_MASTER_SITES[+?]?=/) { + if ($tmp =~ /\nDYNAMIC_MASTER_SITES[+?]?=/) { &perror("WARN: MASTER_SITES and DYNAMIC_MASTER_SITES ". "found. Is this ok?"); } |