svn commit: r312483 - head/lib/libsbuf

Ngie Cooper ngie at FreeBSD.org
Fri Jan 20 04:35:51 UTC 2017


Author: ngie
Date: Fri Jan 20 04:35:49 2017
New Revision: 312483
URL: https://svnweb.freebsd.org/changeset/base/312483

Log:
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This implifies pathing in make/displayed output
  
  MFC after:    3 weeks
  Sponsored by: Dell EMC Isilon

Modified:
  head/lib/libsbuf/Makefile

Modified: head/lib/libsbuf/Makefile
==============================================================================
--- head/lib/libsbuf/Makefile	Fri Jan 20 04:35:36 2017	(r312482)
+++ head/lib/libsbuf/Makefile	Fri Jan 20 04:35:49 2017	(r312483)
@@ -10,6 +10,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-head mailing list