svn commit: r312492 - head/lib/libnv

Ngie Cooper ngie at FreeBSD.org
Fri Jan 20 04:40:56 UTC 2017


Author: ngie
Date: Fri Jan 20 04:40:55 2017
New Revision: 312492
URL: https://svnweb.freebsd.org/changeset/base/312492

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/libnv/Makefile

Modified: head/lib/libnv/Makefile
==============================================================================
--- head/lib/libnv/Makefile	Fri Jan 20 04:40:10 2017	(r312491)
+++ head/lib/libnv/Makefile	Fri Jan 20 04:40:55 2017	(r312492)
@@ -8,8 +8,8 @@ SHLIBDIR?= /lib
 LIB=	nv
 SHLIB_MAJOR= 0
 
-.PATH: ${.CURDIR}/../../sys/contrib/libnv ${.CURDIR}/../../sys/sys
-CFLAGS+=-I${.CURDIR}/../../sys -I${.CURDIR}
+.PATH: ${SRCTOP}/sys/contrib/libnv ${SRCTOP}/sys/sys
+CFLAGS+=-I${SRCTOP}/sys -I${.CURDIR}
 
 SRCS=	cnvlist.c
 SRCS+=	dnvlist.c


More information about the svn-src-head mailing list