Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 Jan 2008 22:22:15 -0500
From:      Gary Palmer <gpalmer@freebsd.org>
To:        "Aryeh M. Friedman" <aryeh.friedman@gmail.com>
Cc:        freebsd-current@freebsd.org
Subject:   Re: build/installworld break under -j n for n>1
Message-ID:  <20080127032215.GA1083@in-addr.com>
In-Reply-To: <479BB50E.2080703@gmail.com>
References:  <479BB50E.2080703@gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20080127032215.GA1083>