diff options
author | adrianp <adrianp@pkgsrc.org> | 2008-02-08 23:13:35 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2008-02-08 23:13:35 +0000 |
commit | d08d9e77fef74b8a3a44cd06679962627a7c99aa (patch) | |
tree | 0862f2d60d47363814f56de1005c792e254f08ce /mk | |
parent | 4a2b7dfc86097c83a432d8fee76fb764e8c774cc (diff) | |
download | pkgsrc-d08d9e77fef74b8a3a44cd06679962627a7c99aa.tar.gz |
Skip ${PREFIX}/emul/linux32/proc.* as well
Diffstat (limited to 'mk')
-rw-r--r-- | mk/check/check-files.mk | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mk/check/check-files.mk b/mk/check/check-files.mk index 7dd5ac6a865..c5060872d3b 100644 --- a/mk/check/check-files.mk +++ b/mk/check/check-files.mk @@ -1,4 +1,4 @@ -# $NetBSD: check-files.mk,v 1.22 2008/02/07 21:36:13 rillig Exp $ +# $NetBSD: check-files.mk,v 1.23 2008/02/08 23:13:35 adrianp Exp $ # # This file checks that the list of installed files matches the PLIST. # For that purpose it records the file list of LOCALBASE before and @@ -53,10 +53,11 @@ CHECK_FILES_SKIP+= ${PREFIX}/lib/R/doc/html/search/index.txt CHECK_FILES_SKIP+= ${PKG_DBDIR}/.* -# We don't care about what's under /proc in Linux emulation, which is -# just holds run-time generated data. +# We don't care about what's under linux/proc and linux32/proc in Linux +# emulation, which just holds run-time generated data. # CHECK_FILES_SKIP+= ${PREFIX}/emul/linux/proc.* +CHECK_FILES_SKIP+= ${PREFIX}/emul/linux32/proc.* # The reference-count meta-data directory used by the pkginstall framework. CHECK_FILES_SKIP+= ${PKG_DBDIR}.refcount.* |