Module Name: src
Committed By: rillig
Date: Fri Mar 26 22:27:43 UTC 2021
Modified Files:
src/usr.bin/indent: Makefile
Log Message:
indent: remove workaround for array initialization bug in lint
The bug has been fixed in init.c 1.133 from 2021-03-25.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/usr.bin/indent/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/indent/Makefile
diff -u src/usr.bin/indent/Makefile:1.11 src/usr.bin/indent/Makefile:1.12
--- src/usr.bin/indent/Makefile:1.11 Sun Mar 14 00:22:16 2021
+++ src/usr.bin/indent/Makefile Fri Mar 26 22:27:43 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2021/03/14 00:22:16 rillig Exp $
+# $NetBSD: Makefile,v 1.12 2021/03/26 22:27:43 rillig Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= indent
@@ -7,7 +7,4 @@ SRCS= indent.c io.c lexi.c parse.c pr_co
CPPFLAGS+= ${DEBUG:D-Ddebug}
LINTFLAGS+= -e -w
-# bug in lint; see tests/usr.bin/lint/lint1/msg_168.c
-LINTFLAGS.lexi.c+= -X 168
-
.include <bsd.prog.mk>