From owner-freebsd-current Tue Dec 5 19: 4:16 2000 From owner-freebsd-current@FreeBSD.ORG Tue Dec 5 19:04:13 2000 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id 4EF9837B400 for ; Tue, 5 Dec 2000 19:04:13 -0800 (PST) Received: from ix.netcom.com (sil-wa16-20.ix.netcom.com [207.93.148.148]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id WAA11733 for ; Tue, 5 Dec 2000 22:04:10 -0500 (EST) Received: (from tomdean@localhost) by ix.netcom.com (8.11.1/8.9.3) id eB632ZN28189; Tue, 5 Dec 2000 19:02:35 -0800 (PST) (envelope-from tomdean@ix.netcom.com) Date: Tue, 5 Dec 2000 19:02:35 -0800 (PST) Message-Id: <200012060302.eB632ZN28189@ix.netcom.com> From: "Thomas D. Dean" To: current@FreeBSD.ORG Subject: Make World Time Format Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is it possible to go back to the old style of reporting world time in Makefile? I have been collecting make time stats. This is where the last 3 lines of the output are: -------------------------------------------------------------- >>> elf make world started on Thu Aug 31 09:47:50 PDT 2000 >>> elf make world completed on Thu Aug 31 17:44:08 PDT 2000 -------------------------------------------------------------- tomdean diff -c Makefile~ Makefile *** Makefile~ Tue Dec 5 18:57:41 2000 --- Makefile Tue Dec 5 18:56:31 2000 *************** *** 109,116 **** # success, regardless of how old your existing system is. # world: upgrade_checks @echo "--------------------------------------------------------------" ! @echo ">>> ${OBJFORMAT} make world started on `LC_TIME=C date`" @echo "--------------------------------------------------------------" .if target(pre-world) @echo --- 109,117 ---- # success, regardless of how old your existing system is. # world: upgrade_checks + WORLD_START="`LC_TIME=C date`" @echo "--------------------------------------------------------------" ! @echo ">>> ${OBJFORMAT} make world started on ${WORLD_START}" @echo "--------------------------------------------------------------" .if target(pre-world) @echo *************** *** 130,135 **** --- 131,137 ---- .endif @echo @echo "--------------------------------------------------------------" + @echo ">>> ${OBJFORMAT} make world started on ${WORLD_START}" @echo ">>> ${OBJFORMAT} make world completed on `LC_TIME=C date`" @echo "--------------------------------------------------------------" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message