| Summary: | no /usr/libdata/lint/llib-lc.ln | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Base System | Reporter: | mark tinguely <tinguely> | ||||
| Component: | bin | Assignee: | freebsd-bugs (Nobody) <bugs> | ||||
| Status: | Closed Overcome By Events | ||||||
| Severity: | Affects Only Me | CC: | ngie | ||||
| Priority: | Normal | ||||||
| Version: | 3.4-RELEASE | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
mark tinguely
2000-05-01 15:40:00 UTC
Responsible Changed From-To: freebsd-bugs->dwmalone David has some local patches in this area of the tree and was seen hinting that he might tackle lint at some stage. :-) Responsible Changed From-To: dwmalone->freebsd-bugs over to the pool (approved by bugmeister) I could be wrong, but I think this will fix the issue:
$ svn diff .
Index: Makefile
===================================================================
--- Makefile (revision 290633)
+++ Makefile (working copy)
@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.7 2000/06/14 20:22:19 matt Exp $
# $FreeBSD$
-LIBS= llib-lposix.ln llib-lstdc.ln
+LIBS= llib-lposix.ln llib-lstdc.ln llib-lc.ln
FILES= ${LIBS}
FILESDIR= ${LINTLIBDIR}
@@ -14,6 +14,9 @@
llib-lstdc.ln: llib-lstdc
${LINT} ${LINTFLAGS} -Cstdc ${.ALLSRC}
+llib-lc.ln: llib-lstdc
+ ${LINT} ${LINTFLAGS} -Cc ${.ALLSRC}
+
.include <bsd.prog.mk>
.if ${MK_META_MODE} == "yes"
xlint(1) was removed in r325893 |