diff options
author | rillig <rillig@pkgsrc.org> | 2008-01-23 14:30:59 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2008-01-23 14:30:59 +0000 |
commit | cef72b17793ce4cfbfe6c961a1133eac35658a2d (patch) | |
tree | 6b8aef1aeb247d4261af8c4ebb295043800b0670 /mk | |
parent | aa66ac5ffb6c2d00a7f0237780a7852e26d667d4 (diff) | |
download | pkgsrc-cef72b17793ce4cfbfe6c961a1133eac35658a2d.tar.gz |
STEP_MSG may be a hidden command.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/check/check-files.mk | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/mk/check/check-files.mk b/mk/check/check-files.mk index f80c228db08..b4e09210621 100644 --- a/mk/check/check-files.mk +++ b/mk/check/check-files.mk @@ -1,4 +1,4 @@ -# $NetBSD: check-files.mk,v 1.20 2007/09/27 13:57:12 rillig Exp $ +# $NetBSD: check-files.mk,v 1.21 2008/01/23 14:30:59 rillig 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 @@ -172,12 +172,10 @@ check-files-post: ${_CHECK_FILES_POST} .PHONY: check-files-pre-message check-files-post-message check-files-pre-message: - ${_PKG_SILENT}${_PKG_DEBUG}${STEP_MSG} \ - "Generating pre-install file lists" + @${STEP_MSG} "Generating pre-install file lists" check-files-post-message: - ${_PKG_SILENT}${_PKG_DEBUG}${STEP_MSG} \ - "Generating post-install file lists" + @${STEP_MSG} "Generating post-install file lists" ${_CHECK_FILES_PRE.prefix} ${_CHECK_FILES_POST.prefix}: ${_PKG_SILENT}${_PKG_DEBUG} \ |