svn commit: r313597 - stable/10/lib/libypclnt

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 06:30:27 UTC 2017


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

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

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

Modified: stable/10/lib/libypclnt/Makefile
==============================================================================
--- stable/10/lib/libypclnt/Makefile	Sat Feb 11 06:27:42 2017	(r313596)
+++ stable/10/lib/libypclnt/Makefile	Sat Feb 11 06:30:25 2017	(r313597)
@@ -23,9 +23,9 @@ GENSRCS=yp.h \
 	yppasswd_private_xdr.c
 
 RPCGEN=	RPCGEN_CPP=${CPP:Q} rpcgen -C
-RPCSRC=	${.CURDIR}/../../include/rpcsvc/yp.x
-RPCSRC_PW=	${.CURDIR}/../../include/rpcsvc/yppasswd.x
-RPCSRC_PRIV=	${.CURDIR}/../../usr.sbin/rpc.yppasswdd/yppasswd_private.x
+RPCSRC=	${SRCTOP}/include/rpcsvc/yp.x
+RPCSRC_PW=	${SRCTOP}/include/rpcsvc/yppasswd.x
+RPCSRC_PRIV=	${SRCTOP}/usr.sbin/rpc.yppasswdd/yppasswd_private.x
 
 yp.h: ${RPCSRC}
 	${RPCGEN} -h -o ${.TARGET} ${RPCSRC}


More information about the svn-src-stable-10 mailing list