Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Jun 2015 03:32:49 +0000 (UTC)
From:      "Simon J. Gerraty" <sjg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r284372 - head/usr.bin/xlint/llib
Message-ID:  <201506140332.t5E3Wn3k099287@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506140332.t5E3Wn3k099287>