Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Jan 2017 04:41:53 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r312493 - head/lib/libngatm
Message-ID:  <201701200441.v0K4frja026178@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Fri Jan 20 04:41:53 2017
New Revision: 312493
URL: https://svnweb.freebsd.org/changeset/base/312493

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

Modified:
  head/lib/libngatm/Makefile

Modified: head/lib/libngatm/Makefile
==============================================================================
--- head/lib/libngatm/Makefile	Fri Jan 20 04:40:55 2017	(r312492)
+++ head/lib/libngatm/Makefile	Fri Jan 20 04:41:53 2017	(r312493)
@@ -8,8 +8,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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701200441.v0K4frja026178>