From owner-svn-src-all@FreeBSD.ORG Thu Mar 18 19:55:07 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3AD4E1065679; Thu, 18 Mar 2010 19:55:07 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mail.cksoft.de (mail.cksoft.de [IPv6:2001:4068:10::3]) by mx1.freebsd.org (Postfix) with ESMTP id C3D078FC29; Thu, 18 Mar 2010 19:55:06 +0000 (UTC) Received: from localhost (amavis.fra.cksoft.de [192.168.74.71]) by mail.cksoft.de (Postfix) with ESMTP id C37F441C759; Thu, 18 Mar 2010 20:55:05 +0100 (CET) X-Virus-Scanned: amavisd-new at cksoft.de Received: from mail.cksoft.de ([192.168.74.103]) by localhost (amavis.fra.cksoft.de [192.168.74.71]) (amavisd-new, port 10024) with ESMTP id V4vKhMmdVrKv; Thu, 18 Mar 2010 20:55:05 +0100 (CET) Received: by mail.cksoft.de (Postfix, from userid 66) id 662B841C75C; Thu, 18 Mar 2010 20:55:05 +0100 (CET) Received: from maildrop.int.zabbadoz.net (maildrop.int.zabbadoz.net [10.111.66.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.int.zabbadoz.net (Postfix) with ESMTP id 305794448EC; Thu, 18 Mar 2010 19:52:48 +0000 (UTC) Date: Thu, 18 Mar 2010 19:52:48 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@maildrop.int.zabbadoz.net To: Doug Barton In-Reply-To: <201003181858.o2IIwHsO008939@svn.freebsd.org> Message-ID: <20100318195128.K33454@maildrop.int.zabbadoz.net> References: <201003181858.o2IIwHsO008939@svn.freebsd.org> X-OpenPGP-Key: 0x14003F198FEFA3E77207EE8D2B58B8F83CCF1842 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r205290 - head X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Mar 2010 19:55:07 -0000 On Thu, 18 Mar 2010, Doug Barton wrote: > Author: dougb > Date: Thu Mar 18 18:58:17 2010 > New Revision: 205290 > URL: http://svn.freebsd.org/changeset/base/205290 > > Log: > For those of us mere mortals who do not aspire to the lofty heights > of kernel hackery, add MAKE_JUST_WORLDS so that we can take part in > the 'make universe' goodnes without using unecessary time and resources. Just FYI, you could do that with .. already: make universe KERNCONFS= > Modified: > head/Makefile > > Modified: head/Makefile > ============================================================================== > --- head/Makefile Thu Mar 18 18:52:18 2010 (r205289) > +++ head/Makefile Thu Mar 18 18:58:17 2010 (r205290) > @@ -311,6 +311,7 @@ universe_${target}: > "check _.${target}.buildworld for details" | ${MAKEFAIL})) > @echo ">> ${target} buildworld completed on `LC_ALL=C date`" > .endif > +.if !defined(MAKE_JUST_WORLDS) > .if exists(${.CURDIR}/sys/${target}/conf/NOTES) > @(cd ${.CURDIR}/sys/${target}/conf && env __MAKE_CONF=/dev/null \ > ${MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \ > @@ -319,6 +320,7 @@ universe_${target}: > .endif > @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \ > universe_kernels > +.endif > @echo ">> ${target} completed on `LC_ALL=C date`" > .endfor > universe_kernels: universe_kernconfs > -- Bjoern A. Zeeb It will not break if you know what you are doing.