From 32bb1cf264a70582e6d2ef0e734163160dd2dc7e Mon Sep 17 00:00:00 2001 From: Alexey Dokuchaev Date: Wed, 25 Dec 2013 16:43:24 +0000 Subject: Traditionally, most (if not all) tamperings with ${TMPPLIST} were done silently within the ports (similar to extraction and patching phases). Recently introduced Mk/Uses/kmod.mk does some grunt work for pkg-plist, like @[un]exec /usr/sbin/kldxref ... stuff via ${ECHO_CMD}, which makes build logs less neat. Mute them and MKDIR, remove an extra whitespace, and wrap one overly long line. Approved by: rene --- Mk/Uses/kmod.mk | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'Mk') diff --git a/Mk/Uses/kmod.mk b/Mk/Uses/kmod.mk index ba1adb6e8736..4932b47ad1b7 100644 --- a/Mk/Uses/kmod.mk +++ b/Mk/Uses/kmod.mk @@ -43,17 +43,18 @@ _INCLUDE_USES_KMOD_POST_MK= yes .PHONY: kmod-post-install pre-install: ${STAGEDIR}${KMODDIR} ${STAGEDIR}${KMODDIR}: - ${MKDIR} ${.TARGET} + @${MKDIR} ${.TARGET} post-install: kmod-post-install kmod-post-install: - ${ECHO_CMD} "@exec /usr/sbin/kldxref ${KMODDIR}" >> ${TMPPLIST} - ${ECHO_CMD} "@unexec /usr/sbin/kldxref ${KMODDIR}" >> ${TMPPLIST} + @${ECHO_CMD} "@exec /usr/sbin/kldxref ${KMODDIR}" >> ${TMPPLIST} + @${ECHO_CMD} "@unexec /usr/sbin/kldxref ${KMODDIR}" >> ${TMPPLIST} .if defined(NO_STAGE) /usr/sbin/kldxref ${KMODDIR} .endif .if ${KMODDIR} != /boot/modules - ${ECHO_CMD} "@unexec rmdir ${KMODDIR} 2>/dev/null || true" >> ${TMPPLIST} + @${ECHO_CMD} "@unexec rmdir ${KMODDIR} 2>/dev/null || true" \ + >> ${TMPPLIST} .endif .endif -- cgit v1.2.3