From owner-svn-src-all@FreeBSD.ORG Thu Oct 23 15:56:38 2008 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 345741065681; Thu, 23 Oct 2008 15:56:38 +0000 (UTC) (envelope-from rdivacky@lev.vlakno.cz) Received: from vlakno.cz (77-93-215-190.static.masterinter.net [77.93.215.190]) by mx1.freebsd.org (Postfix) with ESMTP id B97428FC08; Thu, 23 Oct 2008 15:56:36 +0000 (UTC) (envelope-from rdivacky@lev.vlakno.cz) Received: from localhost (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 46BC79CB4F9; Thu, 23 Oct 2008 17:55:45 +0200 (CEST) X-Virus-Scanned: amavisd-new at vlakno.cz Received: from vlakno.cz ([127.0.0.1]) by localhost (lev.vlakno.cz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BIyFKODFGhAS; Thu, 23 Oct 2008 17:55:30 +0200 (CEST) Received: from lev.vlakno.cz (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 34C0E9CB716; Thu, 23 Oct 2008 17:55:30 +0200 (CEST) Received: (from rdivacky@localhost) by lev.vlakno.cz (8.14.2/8.14.2/Submit) id m9NFtUAd001015; Thu, 23 Oct 2008 17:55:30 +0200 (CEST) (envelope-from rdivacky) Date: Thu, 23 Oct 2008 17:55:30 +0200 From: Roman Divacky To: Dag-Erling Smorgrav Message-ID: <20081023155530.GA810@freebsd.org> References: <200810231553.m9NFrqQj060598@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200810231553.m9NFrqQj060598@svn.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r184205 - in head: . share/man/man9 sys/arm/arm sys/cam/scsi sys/compat/linux sys/contrib/altq/altq sys/contrib/ipfilter/netinet sys/dev/ar sys/dev/ce sys/dev/hwpmc sys/dev/lmc sys/dev/... 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, 23 Oct 2008 15:56:38 -0000 On Thu, Oct 23, 2008 at 03:53:52PM +0000, Dag-Erling Smorgrav wrote: > Author: des > Date: Thu Oct 23 15:53:51 2008 > New Revision: 184205 > URL: http://svn.freebsd.org/changeset/base/184205 > > Log: > Retire the MALLOC and FREE macros. They are an abomination unto style(9). > > MFC after: 3 months > > Modified: > head/Makefile.inc1 > > Modified: head/Makefile.inc1 > ============================================================================== > --- head/Makefile.inc1 Thu Oct 23 15:44:00 2008 (r184204) > +++ head/Makefile.inc1 Thu Oct 23 15:53:51 2008 (r184205) > @@ -758,11 +758,14 @@ buildkernel: > @echo "--------------------------------------------------------------" > cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} > .endif > +.if !defined(NO_KERNELOBJ) > @echo > @echo "--------------------------------------------------------------" > @echo ">>> stage 2.2: rebuilding the object tree" > @echo "--------------------------------------------------------------" > cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj > +.endif > +.if !defined(NO_KERNELTOOLS) > @echo > @echo "--------------------------------------------------------------" > @echo ">>> stage 2.3: build tools" > @@ -779,6 +782,7 @@ buildkernel: > ${MAKE} -DWITHOUT_SSP -DNO_CPU_CFLAGS -DNO_CTF ${target} > .endfor > .endif > +.endif > .if !defined(NO_KERNELDEPEND) > @echo > @echo "--------------------------------------------------------------" > are you sure this belongs here?