svn commit: r314460 - head/usr.sbin/ypldap

Ngie Cooper ngie at FreeBSD.org
Wed Mar 1 04:18:29 UTC 2017


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
 


More information about the svn-src-head mailing list