aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorWolfram Schneider <wosch@FreeBSD.org>2018-07-01 10:05:45 +0000
committerWolfram Schneider <wosch@FreeBSD.org>2018-07-01 10:05:45 +0000
commitd0338de5ca9184f9da12e6d3892853f82f7a4828 (patch)
treed1b3db878c976a81e38bfa8b3f7fe0c9a7c973e1 /Makefile.inc1
parent0d3d234cd13f6ea19a88df267bb814a889d176e9 (diff)
downloadsrc-d0338de5ca9184f9da12e6d3892853f82f7a4828.tar.gz
src-d0338de5ca9184f9da12e6d3892853f82f7a4828.zip
`make installworld' should display "completed" message if done
PR: 225159 Reviewed by: bdrewery Approved by: cem (mentor) Differential Revision: https://reviews.freebsd.org/D14057
Notes
Notes: svn path=/head/; revision=335838
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc111
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 420c058aa3a6..32579bbf5234 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1145,7 +1145,13 @@ kernel-toolchain: ${KERNEL_TOOLCHAIN_TGTS} .PHONY
#
installcheck: _installcheck_world _installcheck_kernel .PHONY
_installcheck_world: .PHONY
+ @echo "--------------------------------------------------------------"
+ @echo ">>> Install check world"
+ @echo "--------------------------------------------------------------"
_installcheck_kernel: .PHONY
+ @echo "--------------------------------------------------------------"
+ @echo ">>> Install check kernel"
+ @echo "--------------------------------------------------------------"
#
# Require DESTDIR to be set if installing for a different architecture or
@@ -1412,12 +1418,15 @@ restage reinstall: .MAKE .PHONY
.endif
@echo
@echo "--------------------------------------------------------------"
- @echo ">>> Installing everything"
+ @echo ">>> Installing everything started on `LC_ALL=C date`"
@echo "--------------------------------------------------------------"
${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
.if defined(LIBCOMPAT)
${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat}
.endif
+ @echo "--------------------------------------------------------------"
+ @echo ">>> Installing everything completed on `LC_ALL=C date`"
+ @echo "--------------------------------------------------------------"
redistribute: .MAKE .PHONY
@echo "--------------------------------------------------------------"