summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>1999-12-28 03:29:56 +0000
committerwiz <wiz@pkgsrc.org>1999-12-28 03:29:56 +0000
commit9ae99cd258563eb3953da211d8046ba9e336365b (patch)
tree045db44cd4a4c7247ecc46c582843f4f455af639 /pkgtools
parentb6bb4b65db0b51a766ad263eddc9bc1497a9f15c (diff)
downloadpkgsrc-9ae99cd258563eb3953da211d8046ba9e336365b.tar.gz
Recognize more directly used commands (like 'ln' instead of '${LN}')
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint/Makefile4
-rw-r--r--pkgtools/pkglint/files/pkglint.pl8
2 files changed, 7 insertions, 5 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile
index 9dfea507d53..c804c45280e 100644
--- a/pkgtools/pkglint/Makefile
+++ b/pkgtools/pkglint/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.30 1999/12/28 00:50:17 hubertf Exp $
+# $NetBSD: Makefile,v 1.31 1999/12/28 03:29:56 wiz Exp $
#
-DISTNAME= pkglint-1.89
+DISTNAME= pkglint-1.90
CATEGORIES= pkgtools devel
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl
index 68ee1b53978..4bbf1de97a0 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.18 1999/12/28 00:50:18 hubertf Exp $
+# $NetBSD: pkglint.pl,v 1.19 1999/12/28 03:29:57 wiz Exp $
#
# This version contains some changes necessary for NetBSD packages
# done by Hubert Feyrer <hubertf@netbsd.org> and
@@ -672,8 +672,10 @@ sub checkmakefile {
#
print "OK: checking direct use of command names.\n" if ($verbose);
foreach $i (split(/\s+/, <<EOF)) {
-awk basename cat cp echo false gmake grep gzcat install
-ldconfig md5 mkdir mv patch rm rmdir sed setenv touch tr xmkmf
+awk basename cat chmod chown chgrp cp cut 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
EOF
$cmdnames{$i} = "\$\{\U$i\E\}";
}