svn commit: r284620 - head/share/mk

Baptiste Daroussin bapt at FreeBSD.org
Sat Jun 20 00:17:58 UTC 2015


Author: bapt
Date: Sat Jun 20 00:17:57 2015
New Revision: 284620
URL: https://svnweb.freebsd.org/changeset/base/284620

Log:
  Use .CURDIR in soelim's include path instead of SRCDIR
  This fixes build when a user has defined SRCDIR in make.conf as required by
  some ports

Modified:
  head/share/mk/bsd.doc.mk

Modified: head/share/mk/bsd.doc.mk
==============================================================================
--- head/share/mk/bsd.doc.mk	Sat Jun 20 00:13:28 2015	(r284619)
+++ head/share/mk/bsd.doc.mk	Sat Jun 20 00:17:57 2015	(r284620)
@@ -75,7 +75,7 @@ TRFLAGS+=	-p
 TRFLAGS+=	-R
 .endif
 .if defined(USE_SOELIM)
-TRFLAGS+=	-I${SRCDIR}
+TRFLAGS+=	-I${.CURDIR}
 .endif
 .if defined(USE_TBL)
 TRFLAGS+=	-t


More information about the svn-src-head mailing list