Author: ngie Date: Wed Mar 1 04:24:56 2017 New Revision: 314466 URL: https://svnweb.freebsd.org/changeset/base/314466
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/ypserv/Makefile Modified: head/usr.sbin/ypserv/Makefile ============================================================================== --- head/usr.sbin/ypserv/Makefile Wed Mar 1 04:24:30 2017 (r314465) +++ head/usr.sbin/ypserv/Makefile Wed Mar 1 04:24:56 2017 (r314466) @@ -2,9 +2,8 @@ .include <src.opts.mk> -RPCDIR= ${.CURDIR}/../../include/rpcsvc -.PATH: ${RPCDIR} \ - ${.CURDIR}/common +RPCDIR= ${SRCTOP}/include/rpcsvc +.PATH: ${RPCDIR} ${.CURDIR}/common PROG= ypserv MAN= ypserv.8 ypinit.8 _______________________________________________ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"