diff options
author | markm <markm@FreeBSD.org> | 2002-09-25 09:55:20 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-09-25 09:55:20 +0000 |
commit | 84072d95a34b6971765837fbfdd181b032dc50ea (patch) | |
tree | d396c6f92fdb41cddd05360f28415653680607fd | |
parent | f58719dbdb8649dd3a29aeaadbd11fcb5b7d196d (diff) | |
download | FreeBSD-src-84072d95a34b6971765837fbfdd181b032dc50ea.zip FreeBSD-src-84072d95a34b6971765837fbfdd181b032dc50ea.tar.gz |
Avoid linting GNU contrib'ed stuff, even if the build engineer asked
for it (via WANT_LINT). It's Just Too Noisy.
-rw-r--r-- | gnu/Makefile.inc | 6 | ||||
-rw-r--r-- | gnu/lib/Makefile.inc | 3 | ||||
-rw-r--r-- | gnu/lib/libreadline/Makefile.inc | 2 | ||||
-rw-r--r-- | gnu/usr.bin/Makefile.inc | 2 |
4 files changed, 13 insertions, 0 deletions
diff --git a/gnu/Makefile.inc b/gnu/Makefile.inc new file mode 100644 index 0000000..63395eb --- /dev/null +++ b/gnu/Makefile.inc @@ -0,0 +1,6 @@ +# $FreeBSD$ + +# Do not lint the GNU stuff. It is all externally maintained and +# lint output is wasteful noise here. + +NOLINT= true diff --git a/gnu/lib/Makefile.inc b/gnu/lib/Makefile.inc new file mode 100644 index 0000000..265f86d --- /dev/null +++ b/gnu/lib/Makefile.inc @@ -0,0 +1,3 @@ +# $FreeBSD$ + +.include "../Makefile.inc" diff --git a/gnu/lib/libreadline/Makefile.inc b/gnu/lib/libreadline/Makefile.inc index 58822ff..84be5d4 100644 --- a/gnu/lib/libreadline/Makefile.inc +++ b/gnu/lib/libreadline/Makefile.inc @@ -11,3 +11,5 @@ LOCAL_CFLAGS= -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"' CFLAGS+= -I${.CURDIR}/.. -I${SRCDIR} -DHAVE_CONFIG_H ${LOCAL_CFLAGS} HISTSRC= history.c histexpand.c histfile.c histsearch.c shell.c + +.include "../Makefile.inc" diff --git a/gnu/usr.bin/Makefile.inc b/gnu/usr.bin/Makefile.inc index 5d2cffd..4cec6fe 100644 --- a/gnu/usr.bin/Makefile.inc +++ b/gnu/usr.bin/Makefile.inc @@ -1,3 +1,5 @@ # $FreeBSD$ BINDIR?= /usr/bin + +.include "../Makefile.inc" |