diff options
author | wiz <wiz> | 2001-07-13 08:20:54 +0000 |
---|---|---|
committer | wiz <wiz> | 2001-07-13 08:20:54 +0000 |
commit | 0f260616645cf1eeb1364b5b78b1bcd598864d09 (patch) | |
tree | f5b6e37845ffb02c8f7a1e88efe9db8b522f55f4 /pkgtools | |
parent | 031bf6446429ace88076f591ea2996a91ac1d09a (diff) | |
download | pkgsrc-0f260616645cf1eeb1364b5b78b1bcd598864d09.tar.gz |
Warn about some more directly used commands we now have ${CMD} for.
[cmp, dirname, sort, wc]
Diffstat (limited to 'pkgtools')
-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 bfd78aa8576..02de20b8400 100644 --- a/pkgtools/pkglint/Makefile +++ b/pkgtools/pkglint/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.106 2001/07/08 16:41:52 wiz Exp $ +# $NetBSD: Makefile,v 1.107 2001/07/13 08:20:54 wiz Exp $ # -DISTNAME= pkglint-3.05 +DISTNAME= pkglint-3.06 CATEGORIES= pkgtools devel MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index e45826aa8db..8892517148f 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.53 2001/07/08 16:41:53 wiz Exp $ +# $NetBSD: pkglint.pl,v 1.54 2001/07/13 08:20:55 wiz Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by Hubert Feyrer <hubertf@netbsd.org>, @@ -728,10 +728,10 @@ sub checkmakefile { # print "OK: checking direct use of command names.\n" if ($verbose); foreach $i (split(/\s+/, <<EOF)) { -awk basename cat chmod chown chgrp cp cut digest echo egrep false file find -gmake grep gtar gzcat id ident install ldconfig ln md5 mkdir mtree mv -patch pax pkg_add pkg_create pkg_delete pkg_info rm rmdir sed setenv sh -su tail test touch tr true type xmkmf +awk basename cat chmod chown chgrp cmp cp cut digest dirname echo egrep false +file find gmake grep gtar gzcat id ident install ldconfig ln md5 mkdir mtree mv +patch pax pkg_add pkg_create pkg_delete pkg_info rm rmdir sed setenv sh sort +su tail test touch tr true type wc xmkmf EOF $cmdnames{$i} = "\$\{\U$i\E\}"; } |