Subject: Re: Using build.sh, a question
To: James Chacon <jmc@netbsd.org>
From: Luke Mewburn <lukem@netbsd.org>
List: current-users
Date: 05/22/2003 12:36:24
On Wed, May 21, 2003 at 10:23:30PM -0400, James Chacon wrote:
  | I've built twice in the last week and both release builds on x86
  | went fine.
  | 
  | My alias to kick stuff off is:
  | 
  | alias bui='sh build.sh -O /usr/obj/`uname -m`/obj -R /usr/obj/`uname -m`/release -D /usr/obj/`uname -m`/build -T /usr/obj/`uname -m`/tools'
  | 
  | Then I can just 
  | 
  | cd /usr/src
  | bui -U -u release

I do a similar thing, although I now don't bother with -R, -D or -T 
since they'll default to "releasedir", "destdir.${MACHINE}", and
"tools/tooldir....." in the .OBJDIR of /usr/src (in your case
"/usr/obj/`uname -m`/obj")

So, my equivalent is now just "./build.sh -u -U -M /var/obj/`uname -m`",
although I do set TOOLDIR and MAKEOBJDIRPREFIX in my environment, but
that's not strictly necessary...