svn commit: r313615 - stable/10/lib/libngatm

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 06:50:26 UTC 2017


Author: ngie
Date: Sat Feb 11 06:50:25 2017
New Revision: 313615
URL: https://svnweb.freebsd.org/changeset/base/313615

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

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

Modified: stable/10/lib/libngatm/Makefile
==============================================================================
--- stable/10/lib/libngatm/Makefile	Sat Feb 11 06:47:56 2017	(r313614)
+++ stable/10/lib/libngatm/Makefile	Sat Feb 11 06:50:25 2017	(r313615)
@@ -7,8 +7,8 @@ SHLIB_MAJOR= 4
 MAN=	libngatm.3 uniaddr.3 unifunc.3 unimsg.3 unisap.3 unistruct.3
 
 # source of the library lives in contrib
-SDIR=	${.CURDIR}/../../sys
-CTRB=	${.CURDIR}/../../contrib/ngatm
+SDIR=	${SRCTOP}/sys
+CTRB=	${SRCTOP}/contrib/ngatm
 LIBBASE= ${SDIR}/contrib/ngatm
 
 CFLAGS+= -I${LIBBASE} -I${.OBJDIR} -I${CTRB}/libngatm


More information about the svn-src-all mailing list