diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-05 01:10:59 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-05 01:10:59 +0000 |
commit | 9af6cadbee9fefe23a1d323c49f658e58589347f (patch) | |
tree | e88cbaadd8d2d01dfc67e1998cc4ceed068a35ad /mk/install/install.mk | |
parent | 111e3f6d511c486b68ff506ee2216203cdf5fca9 (diff) | |
download | pkgsrc-9af6cadbee9fefe23a1d323c49f658e58589347f.tar.gz |
Both, the pkgsrc user and the package maintainer must agree that this
package should run the CHECK_FILES test. Otherwise we cannot prevent the
broken shells/standalone-tcsh from scanning the whole filesystem. (hi
agc!)
Diffstat (limited to 'mk/install/install.mk')
-rw-r--r-- | mk/install/install.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/install/install.mk b/mk/install/install.mk index becd450ad84..4148ee478cc 100644 --- a/mk/install/install.mk +++ b/mk/install/install.mk @@ -1,4 +1,4 @@ -# $NetBSD: install.mk,v 1.18 2006/09/09 02:35:13 obache Exp $ +# $NetBSD: install.mk,v 1.19 2006/10/05 01:10:59 rillig Exp $ ###################################################################### ### install (PUBLIC) @@ -127,7 +127,7 @@ _INSTALL_ALL_TARGETS+= install-check-conflicts _INSTALL_ALL_TARGETS+= install-check-installed .endif _INSTALL_ALL_TARGETS+= install-check-umask -.if empty(CHECK_FILES:M[nN][oO]) +.if empty(CHECK_FILES:M[nN][oO]) && !empty(CHECK_FILES_SUPPORTED:M[Yy][Ee][Ss]) _INSTALL_ALL_TARGETS+= check-files-pre .endif _INSTALL_ALL_TARGETS+= install-makedirs @@ -138,7 +138,7 @@ _INSTALL_ALL_TARGETS+= post-install _INSTALL_ALL_TARGETS+= plist _INSTALL_ALL_TARGETS+= install-doc-handling _INSTALL_ALL_TARGETS+= install-script-data -.if empty(CHECK_FILES:M[nN][oO]) +.if empty(CHECK_FILES:M[nN][oO]) && !empty(CHECK_FILES_SUPPORTED:M[Yy][Ee][Ss]) _INSTALL_ALL_TARGETS+= check-files-post .endif _INSTALL_ALL_TARGETS+= post-install-script |