- Don't print "elf" before printing "make world" (aout support has been

removed).

- Avoid using printf(1) where a simple shell's built-in echo is enough.
This commit is contained in:
Ruslan Ermilov 2003-08-06 11:06:38 +00:00
parent 1c5fa550e8
commit 5ab778118b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=118531

View file

@ -105,7 +105,7 @@ STARTTIME!= LC_ALL=C date
#
world: upgrade_checks
@echo "--------------------------------------------------------------"
@echo ">>> elf make world started on ${STARTTIME}"
@echo ">>> make world started on ${STARTTIME}"
@echo "--------------------------------------------------------------"
.if target(pre-world)
@echo
@ -125,7 +125,8 @@ world: upgrade_checks
.endif
@echo
@echo "--------------------------------------------------------------"
@printf ">>> elf make world completed on `LC_ALL=C date`\n (started ${STARTTIME})\n"
@echo ">>> make world completed on `LC_ALL=C date`"
@echo " (started ${STARTTIME})"
@echo "--------------------------------------------------------------"
#
@ -198,7 +199,8 @@ universe:
.endfor
.endfor
@echo "--------------------------------------------------------------"
@printf ">>> make universe completed on `LC_ALL=C date`\n (started ${STARTTIME})\n"
@echo ">>> make universe completed on `LC_ALL=C date`"
@echo " (started ${STARTTIME})"
@echo "--------------------------------------------------------------"
KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \