Subject: Re: Just a note of thanks--in general.
To: Mason Loring Bliss <mason@acheron.middleboro.ma.us>
From: None <mcmahill@mtl.mit.edu>
List: netbsd-help
Date: 05/30/2000 15:21:56
On Tue, 30 May 2000, Mason Loring Bliss wrote:

> On Sat, May 27, 2000 at 11:43:25AM -0700, sudog@sudog.com wrote:
> 
> > where rebuilding the kernel *IS* as simple as "make depend; make; cp
> > ./netbsd /; reboot",
> 
> Try:
> 
> 	make depend; make; make install; shutdown -r now

I might recommend '&&' instead of ';'

ie

make depend && make &&....


that way the whole process stops if 1 fails

-Dan