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}
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to