aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2003-08-06 11:06:38 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2003-08-06 11:06:38 +0000
commit5ab778118b32eecd69e897614e153aafcc3a5b63 (patch)
tree61207da43a5310344b05ff37a12b731230a5c7d2 /Makefile
parent1c5fa550e8f82e480cd487758be243b90403af3e (diff)
downloadsrc-5ab778118b32eecd69e897614e153aafcc3a5b63.tar.gz
src-5ab778118b32eecd69e897614e153aafcc3a5b63.zip
- 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.
Notes
Notes: svn path=/head/; revision=118531
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f0686030b326..cf2cd387223e 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 && \