Date: Mon, 3 Dec 2001 14:31:09 -0800 (PST) From: Bruce Evans <bde@FreeBSD.org> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.lib.mk bsd.prog.mk Message-ID: <200112032231.fB3MV9P67308@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200112032231.fB3MV9P67308>