summaryrefslogtreecommitdiff
path: root/mk/check
diff options
context:
space:
mode:
authormarino <marino>2012-05-22 07:59:31 +0000
committermarino <marino>2012-05-22 07:59:31 +0000
commitf78a42a8b8c603efd53ff0258793dc2d2c4fb393 (patch)
treeed7b224fe09c08f3a5ee3dad093c6b2333fe86d8 /mk/check
parent3189bec60178ca9051a4d309567ffad8aa45a54b (diff)
downloadpkgsrc-f78a42a8b8c603efd53ff0258793dc2d2c4fb393.tar.gz
mk/check/check-files.mk: Skip locale.alias
On DragonFly, packages like devel/doc++ and net/wap-utils were failing the file check during installation due to a present locale.alias file. Treat it the same as charset.alias.
Diffstat (limited to 'mk/check')
-rw-r--r--mk/check/check-files.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/mk/check/check-files.mk b/mk/check/check-files.mk
index e02ba159571..798d7a856f1 100644
--- a/mk/check/check-files.mk
+++ b/mk/check/check-files.mk
@@ -1,4 +1,4 @@
-# $NetBSD: check-files.mk,v 1.27 2010/08/24 19:08:29 bad Exp $
+# $NetBSD: check-files.mk,v 1.28 2012/05/22 07:59:31 marino 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
@@ -99,6 +99,9 @@ CHECK_FILES_SKIP+= ${PREFIX}/.*/fonts.cache-1
# Mutable charset.alias file
CHECK_FILES_SKIP+= ${PREFIX}/lib/charset.alias
+# Mutable locale.alias file
+CHECK_FILES_SKIP+= ${PREFIX}/share/locale/locale.alias
+
_CHECK_FILES_SKIP_FILTER= ${GREP} -vx ${CHECK_FILES_SKIP:@f@-e ${DESTDIR:Q}${f:Q}@}
###########################################################################