Need to provide -I for meta mode

This commit is contained in:
Simon J. Gerraty 2015-06-14 03:32:49 +00:00
parent c55c82f669
commit c090bf86eb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=284372

View File

@ -8,6 +8,8 @@ FILESDIR= ${LINTLIBDIR}
CLEANFILES+= ${LIBS}
llib-lposix.ln: llib-lposix
${LINT} ${LINTFLAGS} -Cposix ${.ALLSRC}
@ -15,3 +17,7 @@ llib-lstdc.ln: llib-lstdc
${LINT} ${LINTFLAGS} -Cstdc ${.ALLSRC}
.include <bsd.prog.mk>
.if ${MK_META_MODE} == "yes"
LINTFLAGS+= -I${STAGE_INCLUDEDIR}
.endif