From owner-svn-src-head@FreeBSD.ORG Tue Apr 9 20:31:01 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2EC83520; Tue, 9 Apr 2013 20:31:01 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) by mx1.freebsd.org (Postfix) with ESMTP id E947FBD6; Tue, 9 Apr 2013 20:31:00 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7::4d63:2bde:2d40:a6d0] (unknown [IPv6:2001:7b8:3a7:0:4d63:2bde:2d40:a6d0]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 0F5F55C44; Tue, 9 Apr 2013 22:30:58 +0200 (CEST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.3 \(1503\)) Subject: Re: svn commit: r249316 - head From: Dimitry Andric In-Reply-To: <201304092021.r39KLaB6034938@svn.freebsd.org> Date: Tue, 9 Apr 2013 22:30:52 +0200 Content-Transfer-Encoding: 7bit Message-Id: References: <201304092021.r39KLaB6034938@svn.freebsd.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-Mailer: Apple Mail (2.1503) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Apr 2013 20:31:01 -0000 On Apr 9, 2013, at 22:21, Dimitry Andric wrote: > Author: dim > Date: Tue Apr 9 20:21:35 2013 > New Revision: 249316 > URL: http://svnweb.freebsd.org/changeset/base/249316 > > Log: > Ensure make -j N universe works correctly, by checking for an up-to-date > make before starting the universe targets themselves. Otherwise, all of > the targets would attempt to build make simultaneously, overwriting each > other's copies of the make object files and executable. This could lead > to strange errors, for example when partially-written make executables > are invoked. > > Also amend r216620, Oops, that should have been r216520, instead.