summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorkristerw <kristerw@pkgsrc.org>2005-09-25 00:02:27 +0000
committerkristerw <kristerw@pkgsrc.org>2005-09-25 00:02:27 +0000
commit2ed3db46eb4dce76e0d99d2a7190f3c39243a8bf (patch)
tree35d9897ecad85a20639d565956065d13b9aa008b /mk
parenta778895f8d18a2558ed9bddc6eaad3e3a0462e1d (diff)
downloadpkgsrc-2ed3db46eb4dce76e0d99d2a7190f3c39243a8bf.tar.gz
Use ${GREP} -vx instead of ${GREP} -v when filtering the list
of files. This prevents it from incorrectly report errors for files with a name that is a prefix of a file in the CHECK_FILES_SKIP list.
Diffstat (limited to 'mk')
-rw-r--r--mk/bsd.pkg.check.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.check.mk b/mk/bsd.pkg.check.mk
index 1e8037e457c..73f86fb20e7 100644
--- a/mk/bsd.pkg.check.mk
+++ b/mk/bsd.pkg.check.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.check.mk,v 1.15 2005/09/03 23:28:30 jlam Exp $
+# $NetBSD: bsd.pkg.check.mk,v 1.16 2005/09/25 00:02:27 kristerw Exp $
#
# This Makefile fragment is included by bsd.pkg.mk and defines the
# relevant variables and targets for the various install-time "check"
@@ -66,7 +66,7 @@ CHECK_FILES_SKIP+= ${d:C/^([^\/])/${PREFIX}\/\1/}
.for d o g m in ${MAKE_DIRS_PERMS} ${OWN_DIRS_PERMS}
CHECK_FILES_SKIP+= ${d:C/^([^\/])/${PREFIX}\/\1/}
.endfor
-_CHECK_FILES_SKIP_FILTER= ${GREP} -v ${CHECK_FILES_SKIP:@f@-e ${f:Q}@}
+_CHECK_FILES_SKIP_FILTER= ${GREP} -vx ${CHECK_FILES_SKIP:@f@-e ${f:Q}@}
###########################################################################
# These are the files generated and used by the check-files implementation