summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1999-06-22 10:13:23 +0000
committerSatoshi Asami <asami@FreeBSD.org>1999-06-22 10:13:23 +0000
commitd18483f0faa62255d3e241892623871cc98967ca (patch)
treec0e285921a9a85553a6881ca1f1898a493123d9c /Tools
parentThree scripts to look into the error logs and generate the now-famous (diff)
Print out the time when the build starts and ends.
Notes
Notes: svn path=/head/; revision=19635
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/portbuild/scripts/buildscript7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/buildscript b/Tools/portbuild/scripts/buildscript
index 2320f75c08e0..a5d3a269875c 100755
--- a/Tools/portbuild/scripts/buildscript
+++ b/Tools/portbuild/scripts/buildscript
@@ -14,10 +14,17 @@ fi
cd $dir || exit 1
echo -n "maintained by: "
make maintainer
+echo -n "build started at "
+date
+echo "================================================================"
if make package; then
echo "0" > /tmp/status
else
echo "1" > /tmp/status
fi
+echo "================================================================"
+echo -n "build ended at "
+date
+
exit 0