summaryrefslogtreecommitdiffstats
path: root/Makefile.inc0
diff options
context:
space:
mode:
authorandreas <andreas@FreeBSD.org>1998-09-17 16:32:00 +0000
committerandreas <andreas@FreeBSD.org>1998-09-17 16:32:00 +0000
commit57f67dbf4dadf6f79299305f6565b5321f3dd729 (patch)
tree8049b8cd2ccc807737e4e031202d16b46370fc8e /Makefile.inc0
parent23704f192848b8ec5678997bff877f95e75d01b0 (diff)
downloadFreeBSD-src-57f67dbf4dadf6f79299305f6565b5321f3dd729.zip
FreeBSD-src-57f67dbf4dadf6f79299305f6565b5321f3dd729.tar.gz
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 ">>> ..."
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 a3c6e89..9929e96 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 "--------------------------------------------------------------"
#
OpenPOWER on IntegriCloud