From owner-cvs-all Mon Mar 18 13: 6:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id B4A0F37B41D; Mon, 18 Mar 2002 13:05:42 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id IAA23051; Tue, 19 Mar 2002 08:05:40 +1100 Date: Tue, 19 Mar 2002 08:05:43 +1100 (EST) From: Bruce Evans X-X-Sender: To: Ruslan Ermilov Cc: Mark Murray , , Subject: Re: cvs commit: src/share/mk bsd.lib.mk sys.mk src/sys/conf kern.post.mk kmod.mk In-Reply-To: <20020318085140.GD37136@sunbay.com> Message-ID: <20020319075726.I2912-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 18 Mar 2002, Ruslan Ermilov wrote: > %%% > Index: share/mk/bsd.lib.mk > =================================================================== > RCS file: /home/ncvs/src/share/mk/bsd.lib.mk,v > retrieving revision 1.104 > diff -u -r1.104 bsd.lib.mk > --- share/mk/bsd.lib.mk 17 Mar 2002 10:05:57 -0000 1.104 > +++ share/mk/bsd.lib.mk 18 Mar 2002 08:49:52 -0000 > ... > @@ -375,9 +374,8 @@ > > .if !target(lint) > lint: ${SRCS:M*.c} _SUBDIR > - ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} | more 2>&1 > + ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} Mark wanted to keep all these. I removed all the "more" pipelines, but left the redirections. Now the redirection actually works (lint's error output should have been redirected, not more's). > Index: sys/conf/kmod.mk > =================================================================== > RCS file: /home/ncvs/src/sys/conf/kmod.mk,v > retrieving revision 1.114 > diff -u -r1.114 kmod.mk > --- sys/conf/kmod.mk 17 Mar 2002 10:05:57 -0000 1.114 > +++ sys/conf/kmod.mk 18 Mar 2002 08:49:52 -0000 > @@ -339,7 +339,7 @@ > regress: > > lint: ${SRCS} > - ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC:M*.c} | more 2>&1 > + ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC:M*.c} > > .include > > %%% I changed DILU to DIU here. cc's -L directories are normally just wrong for lint. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message