mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-25 20:27:55 +01:00
- 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:
parent
1c5fa550e8
commit
5ab778118b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=118531
8
Makefile
8
Makefile
@ -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 && \
|
||||
|
Loading…
Reference in New Issue
Block a user