diff options
author | wiz <wiz@pkgsrc.org> | 2001-09-09 20:50:16 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-09-09 20:50:16 +0000 |
commit | dab4064630eb267150da0ac702c07838d7d6cd64 (patch) | |
tree | ab821a8949208cb47da6d6347a061e414997c13a /pkgtools/pkglint | |
parent | a16fc84f19dd8bf3201242f9e04334979fbebb2f (diff) | |
download | pkgsrc-dab4064630eb267150da0ac702c07838d7d6cd64.tar.gz |
NO_WRKSUBDIR is deprecated, while USE_LIBTOOL isn't anymore.
Version now 3.08.
Diffstat (limited to 'pkgtools/pkglint')
-rw-r--r-- | pkgtools/pkglint/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile index d054712db3c..6bab5d1e395 100644 --- a/pkgtools/pkglint/Makefile +++ b/pkgtools/pkglint/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.109 2001/09/09 20:36:42 agc Exp $ +# $NetBSD: Makefile,v 1.110 2001/09/09 20:50:16 wiz Exp $ # -DISTNAME= pkglint-3.07 +DISTNAME= pkglint-3.08 CATEGORIES= pkgtools devel MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 05d48a3b1cc..8a4c3aa2960 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.55 2001/07/15 12:56:58 wiz Exp $ +# $NetBSD: pkglint.pl,v 1.56 2001/09/09 20:50:17 wiz Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by Hubert Feyrer <hubertf@netbsd.org>, @@ -678,10 +678,10 @@ sub checkmakefile { &perror("FATAL: USE_PKGLIBTOOL is deprecated, ". "use USE_LIBTOOL instead."); } - print "OK: checking LIBTOOL_OVERRIDE.\n" if ($verbose); - if ($whole =~ /\nLIBTOOL_OVERRIDE/) { - &perror("FATAL: LIBTOOL_OVERRIDE is deprecated, ". - "try to use LTCONFIG_OVERRIDE instead."); + print "OK: checking NO_WRKSUBDIR.\n" if ($verbose); + if ($whole =~ /\nNO_WRKSUBDIR/) { + &perror("FATAL: NO_WRKSUBDIR is deprecated, ". + "use WRKSRC=\$\{WRKDIR\} instead."); } print "OK: checking MD5_FILE, DIGEST_FILE and PATCH_SUM_FILE.\n" if ($verbose); if ($whole =~ /\n(MD5_FILE)/ or $whole =~ /\n(DIGEST_FILE)/ or |