From owner-cvs-all Mon Dec 3 14:31:13 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FCCA37B417; Mon, 3 Dec 2001 14:31:09 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fB3MV9P67308; Mon, 3 Dec 2001 14:31:09 -0800 (PST) (envelope-from bde) Message-Id: <200112032231.fB3MV9P67308@freefall.freebsd.org> From: Bruce Evans Date: Mon, 3 Dec 2001 14:31:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.lib.mk bsd.prog.mk X-FreeBSD-CVS-Branch: HEAD 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 bde 2001/12/03 14:31:09 PST Modified files: share/mk bsd.lib.mk bsd.prog.mk Log: Unbreak "make lint" for programs and "make llib-l${LIB}.ln" for libraries a little by not passing all of ${CFLAGS} to lint. Pass only options matching -[DIU]*. The important -nostdinc option can't be passed like I first thought because lint misinterprets as "-n -o stdinc". The unimportant -B* option can't be passed because lint doesn't support it. Otherwise, we pass the same options as to mkdep, exept for a bug in the latter: -U* is not passed. All this depends on option args not being separated from option flags by a space. Revision Changes Path 1.100 +2 -2 src/share/mk/bsd.lib.mk 1.102 +2 -2 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message