From 619a63f7905fcfb63cae6cf80ed4ce993433318c Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Wed, 13 Jul 2005 14:54:46 +0000
Subject: [PATCH] Display start and end times for builds.  From Eduardo Munoz.

---
 tools/build.sh | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/tools/build.sh b/tools/build.sh
index 6a9d566d9..95dcd13c7 100755
--- a/tools/build.sh
+++ b/tools/build.sh
@@ -118,6 +118,9 @@ if [ -n "$bootfiles" ]; then
     done
 fi
 
+build_started=`date`
+echo "//starting build: $build_started"
+
 TARGET=$BASE-2
 ENABLE=$ENABLE2
 
@@ -142,3 +145,8 @@ then
     OLDLISP="${BASE}-4/lisp/lisp -noinit -core ${BASE}-4/lisp/lisp.core"
     $TIMER $TOOLDIR/build-utils.sh $TARGET
 fi
+
+build_finished=`date`
+echo
+echo "//build started:  $build_started"
+echo "//build finished: $build_finished"
-- 
GitLab