diff options
author | jmmv <jmmv> | 2005-01-14 18:41:00 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2005-01-14 18:41:00 +0000 |
commit | d0c32a197d927f970a92f08574acf59d9f083848 (patch) | |
tree | fdc90f680d6986a887b79603c80dade9f3c7054a | |
parent | d6dfe3b80125cd6d8273799b5e536dfdaca63cb1 (diff) | |
download | pkgsrc-d0c32a197d927f970a92f08574acf59d9f083848.tar.gz |
Also skip ${INFO_DIR}/dir in the check-files functionality, as this file
is not controlled by any package (so it won't be part of any PLIST).
-rw-r--r-- | mk/texinfo.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mk/texinfo.mk b/mk/texinfo.mk index 8f782d45426..6c95fc9aa24 100644 --- a/mk/texinfo.mk +++ b/mk/texinfo.mk @@ -1,4 +1,4 @@ -# $NetBSD: texinfo.mk,v 1.25 2005/01/13 09:49:06 seb Exp $ +# $NetBSD: texinfo.mk,v 1.26 2005/01/14 18:41:00 jmmv Exp $ # # Copyright (c) 2002, 2003 The NetBSD Foundation, Inc. # All rights reserved. @@ -56,6 +56,11 @@ USE_PKGINSTALL= YES # files and the Info dir file. INFO_DIR?= info +# The 'dir' file has to be skipped from the check-files functionality +# because it does not belong to any package (thus it is not registered +# in any PLIST). +CHECK_FILES_SKIP+= ${INFO_DIR}/dir + # Does the system have the install-info command? # Any version will fit (really?). _INSTALL_INFO= |