svn commit: r313609 - stable/10/lib/libsbuf

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 06:41:08 UTC 2017


Author: ngie
Date: Sat Feb 11 06:41:07 2017
New Revision: 313609
URL: https://svnweb.freebsd.org/changeset/base/313609

Log:
  MFC r312483:
  
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This implifies pathing in make/displayed output

Modified:
  stable/10/lib/libsbuf/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libsbuf/Makefile
==============================================================================
--- stable/10/lib/libsbuf/Makefile	Sat Feb 11 06:40:27 2017	(r313608)
+++ stable/10/lib/libsbuf/Makefile	Sat Feb 11 06:41:07 2017	(r313609)
@@ -9,6 +9,6 @@ SHLIB_MAJOR	= 6
 SYMBOL_MAPS=    ${.CURDIR}/Symbol.map
 VERSION_DEF=	${.CURDIR}/Version.def
 
-.PATH:	${.CURDIR}/../../sys/kern
+.PATH:	${SRCTOP}/sys/kern
 
 .include <bsd.lib.mk>


More information about the svn-src-all mailing list