Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Mar 2006 10:27:10 -0500
From:      Robert Huff <roberthuff@rcn.com>
To:        freebsd-questions@freebsd.org
Subject:   Re: How to know that make buildworld finished
Message-ID:  <17420.21710.747294.932492@jerusalem.litteratus.org>
In-Reply-To: <200603061525.48225.benlutz@datacomm.ch>
References:  <200603060325.k263P6gX037812@banyan.cs.ait.ac.th> <200603061525.48225.benlutz@datacomm.ch>

next in thread | previous in thread | raw e-mail | index | archive | help

Benjamin Lutz writes:

>  > Is there a way to check that make buildworld did finished
>  > successfully?
>  
>  I suggest using screen. You can find it in the ports as
>  sysutils/screen. It will allow you to detach from a shell, then
>  later reconnect to it. The shell will keep running in the
>  meantime. It's very useful, especially if your SSH connection is
>  unreliable.

	For several years now I have used the following to buildworld:

cd /usr/src
rm buildworld.errors
rm -rf /usr/obj
#make clean
make -v cleandir; make -v cleandir
date > ./buildworld.time
#   make -j 5 buildworld >& ./buildworld.errors
make -v buildworld >& ./buildworld.errors
tail -n 25 /usr/src/buildworld.errors | sendmail huff

	I know when it started; when it ended, and I have the complete
log available in case something went wrong.


			Robert Huff




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?17420.21710.747294.932492>