Hi! On Sun, Jun 22, 2008 at 12:08:39PM +0000, Stuart Henderson wrote: >On 2008-06-22, Mihai Popescu B.S. <[EMAIL PROTECTED]> wrote: >[...]
>> I can send the exact errors. It will be copy by hand, since my OBSD >> computer is almost not installed, without X. >If you're using any unix-like system, you should definitely learn >about redirection in the shell... Redirection is cool. E.g. make build 2>&1 | tee make.out (if you want to watch it live too, however you can do that too by tail -f on the output file). or make build > make.out 2>&1 Assuming a bourne shell (or ksh or bash, i.e. anything of the bourne-like family). In the csh family tree that'd be make build |& tee make.out or make build >& make.out Kind regards, Hannah.

