diff options
author | markm <markm@FreeBSD.org> | 2010-11-18 16:32:52 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2010-11-18 16:32:52 +0000 |
commit | 60be074c5c105702a13e91589efecad633d770fd (patch) | |
tree | d1668c54e7a8a57f2d760dbefd8868aceb28b025 /cddl | |
parent | eb6b98034e6d7d6136bdbe0259c0f0e33560f250 (diff) | |
download | FreeBSD-src-60be074c5c105702a13e91589efecad633d770fd.zip FreeBSD-src-60be074c5c105702a13e91589efecad633d770fd.tar.gz |
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.
Diffstat (limited to 'cddl')
-rw-r--r-- | cddl/Makefile.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cddl/Makefile.inc b/cddl/Makefile.inc index d3a4914..9ebb86b 100644 --- a/cddl/Makefile.inc +++ b/cddl/Makefile.inc @@ -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= |