Date: Tue, 28 Feb 2017 21:38:52 -0800 (PST) From: "Rodney W. Grimes" <freebsd-rwg@pdx.rh.CN85.dnsmgr.net> To: Ngie Cooper <ngie@freebsd.org> Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r314464 - head/usr.sbin/yppush Message-ID: <201703010538.v215cqqW053998@pdx.rh.CN85.dnsmgr.net> In-Reply-To: <201703010424.v214OPdB018960@repo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Would it be possible to not do this as 1000 commits? > Author: ngie > Date: Wed Mar 1 04:24:24 2017 > New Revision: 314464 > URL: https://svnweb.freebsd.org/changeset/base/314464 > > 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/yppush/Makefile > > Modified: head/usr.sbin/yppush/Makefile > ============================================================================== > --- head/usr.sbin/yppush/Makefile Wed Mar 1 04:23:53 2017 (r314463) > +++ head/usr.sbin/yppush/Makefile Wed Mar 1 04:24:24 2017 (r314464) > @@ -1,8 +1,7 @@ > # $FreeBSD$ > > -RPCDIR= ${.CURDIR}/../../include/rpcsvc > -.PATH: ${RPCDIR} ${.CURDIR}/../../usr.sbin/ypserv \ > - ${.CURDIR}/../../libexec/ypxfr > +RPCDIR= ${SRCTOP}/include/rpcsvc > +.PATH: ${RPCDIR} ${SRCTOP}/usr.sbin/ypserv ${SRCTOP}/libexec/ypxfr > > PROG= yppush > MAN= yppush.8 > @@ -10,7 +9,7 @@ SRCS= ypxfr_getmap.c yp_dblookup.c yp_er > ${GENSRCS} > GENSRCS=yp.h yp_clnt.c yppush_svc.c > > -CFLAGS+= -I. -I${.CURDIR}/../../libexec/ypxfr > +CFLAGS+= -I. -I${SRCTOP}/libexec/ypxfr > > WARNS?= 2 > > _______________________________________________ > svn-src-head@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-src-head > To unsubscribe, send any mail to "svn-src-head-unsubscribe@freebsd.org" > -- Rod Grimes rgrimes@freebsd.org
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703010538.v215cqqW053998>