summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2003-08-06 11:06:38 +0000
committerru <ru@FreeBSD.org>2003-08-06 11:06:38 +0000
commit7ba06f3d1561187ed79e43ce591c377ea13e0cda (patch)
tree61207da43a5310344b05ff37a12b731230a5c7d2 /Makefile
parent7580d99a8c2d8ff0d6f76fc94c7731cdca3c51e9 (diff)
downloadFreeBSD-src-7ba06f3d1561187ed79e43ce591c377ea13e0cda.zip
FreeBSD-src-7ba06f3d1561187ed79e43ce591c377ea13e0cda.tar.gz
- 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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f068603..cf2cd38 100644
--- a/Makefile
+++ b/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 && \
OpenPOWER on IntegriCloud