Subject: Re: netbsd-4 fails to build?
To: None <netbsd-users@NetBSD.org>
From: John Nemeth <jnemeth@victoria.tc.ca>
List: netbsd-users
Date: 07/29/2007 15:20:09
On Dec 19,  2:51am, "Andy Ruhl" wrote:
} On 7/29/07, Jan Danielsson <jan.m.danielsson@gmail.com> wrote:
} >
} >    I'm trying to build a netbsd-4 system on my NetBSD/amd64 3.1 system,
} > but the build.sh script fails.  Does the build systems store logs
} > somewhere so I can post the last lines?
} 
} Nope. Use the unix "script" command next time you do a build.

     I just "tee" it into a log, i.e (csh syntax):

./build.sh ...  |& tee ../buildlog

or bourne sh syntax:

./build.sh ... 2>&1 | tee ../buildlog

}-- End of excerpt from "Andy Ruhl"