diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-12-25 16:43:24 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-12-25 16:43:24 +0000 |
commit | 32bb1cf264a70582e6d2ef0e734163160dd2dc7e (patch) | |
tree | dbde7c73e8b8741464c9dad28f36ba9ecf19f3d6 /Mk | |
parent | 977adbb5835d3c714ae8ef4c2d810da15853d6c7 (diff) | |
download | ports-32bb1cf264a70582e6d2ef0e734163160dd2dc7e.tar.gz ports-32bb1cf264a70582e6d2ef0e734163160dd2dc7e.zip |
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
Notes
Notes:
svn path=/head/; revision=337430
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Uses/kmod.mk | 9 |
1 files changed, 5 insertions, 4 deletions
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 |