Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Feb 2017 06:30:26 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r313597 - stable/10/lib/libypclnt
Message-ID:  <201702110630.v1B6UQn8097332@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



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