diff options
author | wiz <wiz@pkgsrc.org> | 2001-04-19 13:25:41 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-04-19 13:25:41 +0000 |
commit | b65c5ab396d6a0b7774ad8b8f8659f7836ef8da7 (patch) | |
tree | 6d207270684f10aef63651fb63bed23a5c7d977d /pkgtools/pkglint | |
parent | 2b09172badb4dd7aa726ba820f7bb2d9ef9df2e2 (diff) | |
download | pkgsrc-b65c5ab396d6a0b7774ad8b8f8659f7836ef8da7.tar.gz |
DISTINFO_FILE, not DIGEST_FILE; fixes some 'missing distinfo file' warnings.
Bump to 2.45.
Diffstat (limited to 'pkgtools/pkglint')
-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 e3ae77c11f1..00c74f5564f 100644 --- a/pkgtools/pkglint/Makefile +++ b/pkgtools/pkglint/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.86 2001/04/17 17:08:41 abs Exp $ +# $NetBSD: Makefile,v 1.87 2001/04/19 13:25:41 wiz Exp $ # -DISTNAME= pkglint-2.44 +DISTNAME= pkglint-2.45 CATEGORIES= pkgtools devel MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index a284b090739..75ada265a1f 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.44 2001/04/17 17:08:50 abs Exp $ +# $NetBSD: pkglint.pl,v 1.45 2001/04/19 13:25:42 wiz Exp $ # # This version contains some changes necessary for NetBSD packages # done by Hubert Feyrer <hubertf@netbsd.org>, @@ -693,7 +693,7 @@ sub checkmakefile { $scriptdir =~ s/\$\{.CURDIR\}/./; $distinfo = "distinfo"; - $distinfo = $1 if ($whole =~ /\nDIGEST_FILE[+?]?=[ \t]*([^\n]+)\n/); + $distinfo = $1 if ($whole =~ /\nDISTINFO_FILE[+?]?=[ \t]*([^\n]+)\n/); $distinfo =~ s/\$\{.CURDIR\}/./; $distinfo =~ s/\${PKGSRCDIR}/..\/../; |