Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Mar 2017 04:18:28 +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: r314460 - head/usr.sbin/ypldap
Message-ID:  <201703010418.v214IS0d015111@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Wed Mar  1 04:18:28 2017
New Revision: 314460
URL: https://svnweb.freebsd.org/changeset/base/314460

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

Modified:
  head/usr.sbin/ypldap/Makefile

Modified: head/usr.sbin/ypldap/Makefile
==============================================================================
--- head/usr.sbin/ypldap/Makefile	Wed Mar  1 04:17:59 2017	(r314459)
+++ head/usr.sbin/ypldap/Makefile	Wed Mar  1 04:18:28 2017	(r314460)
@@ -12,8 +12,8 @@ MAN=		ypldap.8 ypldap.conf.5
 LIBADD=		openbsd event util rpcsvc
 
 CFLAGS+=-I${.CURDIR}
-CFLAGS+=-I${.CURDIR}/../../contrib/pf/libevent
-CFLAGS+=-I${.CURDIR}/../../lib/libopenbsd
+CFLAGS+=-I${SRCTOP}/contrib/pf/libevent
+CFLAGS+=-I${SRCTOP}/lib/libopenbsd
 
 WARNS=	2
 



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