Module Name:    src
Committed By:   rillig
Date:           Sun Jul  4 08:49:41 UTC 2021

Modified Files:
        src/usr.bin/xlint/lint1: Makefile

Log Message:
lint: include scan.c in 'make lint'

This theoretically enables strict bool mode for the few remaining code
in scan.l.  Since scan.l is not yet detected as generated code, all
interesting errors have to be suppressed though.


To generate a diff of this commit:
cvs rdiff -u -r1.75 -r1.76 src/usr.bin/xlint/lint1/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/xlint/lint1/Makefile
diff -u src/usr.bin/xlint/lint1/Makefile:1.75 src/usr.bin/xlint/lint1/Makefile:1.76
--- src/usr.bin/xlint/lint1/Makefile:1.75	Tue Jun 29 07:37:34 2021
+++ src/usr.bin/xlint/lint1/Makefile	Sun Jul  4 08:49:41 2021
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.75 2021/06/29 07:37:34 rillig Exp $
+#	$NetBSD: Makefile,v 1.76 2021/07/04 08:49:41 rillig Exp $
 
 .include <bsd.own.mk>
 
@@ -18,8 +18,8 @@ YHEADER=
 CWARNFLAGS.clang+=	-Wno-error=implicit-int-float-conversion
 LINTFLAGS+=		-T
 LOBJS.${PROG}+=		${SRCS:M*.y:.y=.ln}
-#LOBJS.${PROG}+=	${SRCS:M*.l:.l=.ln}
-LINTFLAGS.scan.c=	-X 107,330,331,333
+LOBJS.${PROG}+=		${SRCS:M*.l:.l=.ln}
+LINTFLAGS.scan.c=	-X 107,126,330,331,332,333
 
 CPPFLAGS+=	-DIS_LINT1
 CPPFLAGS+=	-I${.CURDIR}

Reply via email to