aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorWolfram Schneider <wosch@FreeBSD.org>2018-01-25 21:36:26 +0000
committerWolfram Schneider <wosch@FreeBSD.org>2018-01-25 21:36:26 +0000
commita564880c295a64f6d7ce374a3ac38ab7a9bbf15d (patch)
treea45dd110136dbe733edb8cb3f162a35499effbf2 /Makefile.inc1
parent5436aaae642fac0fad0cff0388583d109c38e5f8 (diff)
downloadsrc-a564880c295a64f6d7ce374a3ac38ab7a9bbf15d.tar.gz
src-a564880c295a64f6d7ce374a3ac38ab7a9bbf15d.zip
`make installkernel' should display a completed message if done
PR: 225159 Reviewed by: bdrewery Approved by: cem (mentor) Differential Revision: https://reviews.freebsd.org/D13940
Notes
Notes: svn path=/head/; revision=328413
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc110
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index b54e6e11bfc5..8a10e614deae 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1447,20 +1447,26 @@ reinstallkernel reinstallkernel.debug: _installcheck_kernel .PHONY
false
.endif
@echo "--------------------------------------------------------------"
- @echo ">>> Installing kernel ${INSTALLKERNEL}"
+ @echo ">>> Installing kernel ${INSTALLKERNEL} on $$(LC_ALL=C date)"
@echo "--------------------------------------------------------------"
${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
${CROSSENV} PATH=${TMPPATH} \
${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
+ @echo "--------------------------------------------------------------"
+ @echo ">>> Installing kernel ${INSTALLKERNEL} completed on $$(LC_ALL=C date)"
+ @echo "--------------------------------------------------------------"
.endif
.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes"
.for _kernel in ${BUILDKERNELS:[2..-1]}
@echo "--------------------------------------------------------------"
- @echo ">>> Installing kernel ${_kernel}"
+ @echo ">>> Installing kernel ${_kernel} $$(LC_ALL=C date)"
@echo "--------------------------------------------------------------"
${_+_}cd ${KRNLOBJDIR}/${_kernel}; \
${CROSSENV} PATH=${TMPPATH} \
${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//}
+ @echo "--------------------------------------------------------------"
+ @echo ">>> Installing kernel ${_kernel} completed on $$(LC_ALL=C date)"
+ @echo "--------------------------------------------------------------"
.endfor
.endif