svn commit: r284372 - head/usr.bin/xlint/llib

Simon J. Gerraty sjg at FreeBSD.org
Sun Jun 14 03:32:50 UTC 2015


Author: sjg
Date: Sun Jun 14 03:32:49 2015
New Revision: 284372
URL: https://svnweb.freebsd.org/changeset/base/284372

Log:
  Need to provide -I for meta mode

Modified:
  head/usr.bin/xlint/llib/Makefile

Modified: head/usr.bin/xlint/llib/Makefile
==============================================================================
--- head/usr.bin/xlint/llib/Makefile	Sun Jun 14 03:31:23 2015	(r284371)
+++ head/usr.bin/xlint/llib/Makefile	Sun Jun 14 03:32:49 2015	(r284372)
@@ -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


More information about the svn-src-all mailing list