build/installworld break under -j n for n>1

Gary Palmer gpalmer at freebsd.org
Sat Jan 26 19:23:12 PST 2008


On Sat, Jan 26, 2008 at 05:32:46PM -0500, Aryeh M. Friedman wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Installworld fails to wait for buildworld to complete under the
> following command line:
> 
> make -j n buildworld installworld
> 
> I have not tested for n!=10.

- installworld is not meant to be run in parallel

- the correct form of the above command is

  make -j <n> buildworld && make installworld

- or you can just use

  make -j <n> world

Gary


More information about the freebsd-current mailing list