1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

Print out the time when the build starts and ends.

This commit is contained in:
Satoshi Asami 1999-06-22 10:13:23 +00:00
parent 613cff9828
commit d18483f0fa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=19635

View File

@ -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