svn commit: r215455 - in head: . cddl

Mark Murray markm at FreeBSD.org
Thu Nov 18 16:32:53 UTC 2010


Author: markm
Date: Thu Nov 18 16:32:52 2010
New Revision: 215455
URL: http://svn.freebsd.org/changeset/base/215455

Log:
  Do not lint code beyond necessity (with apologies to Wiliam of Ockham).
  
  Don't lint externally maintained CDDL code, or relint the 32-bit libraries
  in amd64 mode.

Modified:
  head/Makefile.inc1
  head/cddl/Makefile.inc

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Thu Nov 18 13:38:33 2010	(r215454)
+++ head/Makefile.inc1	Thu Nov 18 16:32:52 2010	(r215455)
@@ -322,7 +322,7 @@ LIB32WMAKEENV+=	MAKEOBJDIRPREFIX=${OBJTR
 
 LIB32WMAKE=	${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \
 		-DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \
-		-DWITHOUT_HTML -DNO_CTF DESTDIR=${LIB32TMP}
+		-DWITHOUT_HTML -DNO_CTF -DNO_LINT DESTDIR=${LIB32TMP}
 LIB32IMAKE=	${LIB32WMAKE:NINSTALL=*:NDESTDIR=*} -DNO_INCS
 .endif
 

Modified: head/cddl/Makefile.inc
==============================================================================
--- head/cddl/Makefile.inc	Thu Nov 18 13:38:33 2010	(r215454)
+++ head/cddl/Makefile.inc	Thu Nov 18 16:32:52 2010	(r215455)
@@ -9,3 +9,8 @@ CFLAGS+=	-DNEED_SOLARIS_BOOLEAN
 
 WARNS?=		6
 CSTD?=		gnu89
+
+# Do not lint the CDDL stuff. It is all externally maintained and
+# lint output is wasteful noise here.
+
+NO_LINT=


More information about the svn-src-head mailing list