aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc0
diff options
context:
space:
mode:
authorAndreas Klemm <andreas@FreeBSD.org>1998-09-17 16:32:00 +0000
committerAndreas Klemm <andreas@FreeBSD.org>1998-09-17 16:32:00 +0000
commit52984c044200294964b22108fde6b4f41f4a7d60 (patch)
tree31fad5874194212535ed0dd4322d1e79c1cf054d /Makefile.inc0
parent46a1f3b42339e7b11aad5eade24ef3a017e394d3 (diff)
downloadsrc-52984c044200294964b22108fde6b4f41f4a7d60.tar.gz
src-52984c044200294964b22108fde6b4f41f4a7d60.zip
Purely cosmetic but useful change.
Make output of make world more readable for grep. Now a grep '>>>' world.log shows you the single stages through which the bootstrap process went as discussed on -current. Could be used to debug the bootstrap mechanism in case of trouble more easily. Would be fine if any further @echo "..." messages containing a description, what's going on, could use the new format: @echo ">>> ..."
Notes
Notes: svn path=/head/; revision=39423
Diffstat (limited to 'Makefile.inc0')
-rw-r--r--Makefile.inc010
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.inc0 b/Makefile.inc0
index a3c6e89a8fc8..9929e9647230 100644
--- a/Makefile.inc0
+++ b/Makefile.inc0
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.inc0,v 1.6 1998/09/09 06:03:51 jb Exp $
+# $Id: Makefile.inc0,v 1.7 1998/09/10 20:44:56 ache Exp $
#
# This makefile ensures that the object directory is set according to the
# object format to avoid mixing aout and elf formatted files during the
@@ -56,12 +56,12 @@ LEGACY_ENV= MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/aout \
#
world:
@echo "--------------------------------------------------------------"
- @echo " ${OBJFORMAT} make world started on `LC_TIME=C date`"
+ @echo ">>> ${OBJFORMAT} make world started on `LC_TIME=C date`"
@echo "--------------------------------------------------------------"
.if target(pre-world)
@echo
@echo "--------------------------------------------------------------"
- @echo " Making 'pre-world' target"
+ @echo ">>> Making 'pre-world' target"
@echo "--------------------------------------------------------------"
@cd ${.CURDIR}; ${MK_ENV} ${MAKE} pre-world
.endif
@@ -76,13 +76,13 @@ world:
.if target(post-world)
@echo
@echo "--------------------------------------------------------------"
- @echo " Making 'post-world' target"
+ @echo ">>> Making 'post-world' target"
@echo "--------------------------------------------------------------"
@cd ${.CURDIR}; ${MK_ENV} ${MAKE} post-world
.endif
@echo
@echo "--------------------------------------------------------------"
- @echo " ${OBJFORMAT} make world completed on `LC_TIME=C date`"
+ @echo ">>> ${OBJFORMAT} make world completed on `LC_TIME=C date`"
@echo "--------------------------------------------------------------"
#