From owner-freebsd-questions@FreeBSD.ORG Sun Jan 9 00:33:42 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61AB7106564A for ; Sun, 9 Jan 2011 00:33:42 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 231668FC14 for ; Sun, 9 Jan 2011 00:33:41 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.4/8.14.4) with ESMTP id p090XfgQ048564; Sat, 8 Jan 2011 17:33:41 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.4/8.14.4/Submit) with ESMTP id p090Xeia048561; Sat, 8 Jan 2011 17:33:41 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Sat, 8 Jan 2011 17:33:40 -0700 (MST) From: Warren Block To: RW In-Reply-To: <20110108233740.322f7665@gumby.homeunix.com> Message-ID: References: <66353398.20110108234322@yandex.ru> <20110108220931.000061d2@unknown> <20110108233740.322f7665@gumby.homeunix.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.6 (wonkity.com [127.0.0.1]); Sat, 08 Jan 2011 17:33:41 -0700 (MST) Cc: freebsd-questions@freebsd.org Subject: Re: error while compile port X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2011 00:33:42 -0000 On Sat, 8 Jan 2011, RW wrote: > On Sat, 8 Jan 2011 22:09:31 +0000 > Bruce Cran wrote: > >> On Sat, 8 Jan 2011 23:43:22 +0200 >> ??????? ??????? wrote: >> >>> cd /usr/ports// >>> make -j 16 install >> >> Don't do that then :) >> >> Ports which are marked MAKE_JOBS_SAFE will automatically be built >> using -j as far as I know. > > > They are also doing very different things. MAKE_JOBS_SAFE applies -j to > GNU make, which is invoked to do the actual compiling of > third-party software. make -j 16 install applies -j to BSD make, which > is used to implement the ports system itself. gmake isn't used by every port, AFAIK. But I can't quite come up with a clear way of saying that I think -j applies to the top-level make (the one running the ports system) while MAKE_JOBS_SAFE/MAKE_JOBS_NUMBER is applied to the make(s) actually building the port.