`make installworld' should display "completed" message if done

PR:             225159
Reviewed by:    bdrewery
Approved by:    cem (mentor)
Differential Revision:  https://reviews.freebsd.org/D14057
This commit is contained in:
Wolfram Schneider 2018-07-01 10:05:45 +00:00
parent 0d3d234cd1
commit d0338de5ca

View File

@ -1145,7 +1145,13 @@ kernel-toolchain: ${KERNEL_TOOLCHAIN_TGTS} .PHONY
# #
installcheck: _installcheck_world _installcheck_kernel .PHONY installcheck: _installcheck_world _installcheck_kernel .PHONY
_installcheck_world: .PHONY _installcheck_world: .PHONY
@echo "--------------------------------------------------------------"
@echo ">>> Install check world"
@echo "--------------------------------------------------------------"
_installcheck_kernel: .PHONY _installcheck_kernel: .PHONY
@echo "--------------------------------------------------------------"
@echo ">>> Install check kernel"
@echo "--------------------------------------------------------------"
# #
# Require DESTDIR to be set if installing for a different architecture or # Require DESTDIR to be set if installing for a different architecture or
@ -1412,12 +1418,15 @@ restage reinstall: .MAKE .PHONY
.endif .endif
@echo @echo
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> Installing everything" @echo ">>> Installing everything started on `LC_ALL=C date`"
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
.if defined(LIBCOMPAT) .if defined(LIBCOMPAT)
${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat} ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat}
.endif .endif
@echo "--------------------------------------------------------------"
@echo ">>> Installing everything completed on `LC_ALL=C date`"
@echo "--------------------------------------------------------------"
redistribute: .MAKE .PHONY redistribute: .MAKE .PHONY
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"