diff options
author | marino <marino@pkgsrc.org> | 2012-05-22 07:59:31 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2012-05-22 07:59:31 +0000 |
commit | 75333c40269f70de3706d134bdf9999af3a10446 (patch) | |
tree | ed7b224fe09c08f3a5ee3dad093c6b2333fe86d8 | |
parent | 62c72b13708edd07001ec1c379c03b4d81d86ad4 (diff) | |
download | pkgsrc-75333c40269f70de3706d134bdf9999af3a10446.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.
-rw-r--r-- | mk/check/check-files.mk | 5 |
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}@} ########################################################################### |