From owner-svn-src-all@freebsd.org Wed Mar 1 05:38:57 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3812ACF58D4; Wed, 1 Mar 2017 05:38:57 +0000 (UTC) (envelope-from freebsd-rwg@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D317192F; Wed, 1 Mar 2017 05:38:56 +0000 (UTC) (envelope-from freebsd-rwg@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id v215cqqq053999; Tue, 28 Feb 2017 21:38:52 -0800 (PST) (envelope-from freebsd-rwg@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd-rwg@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id v215cqqW053998; Tue, 28 Feb 2017 21:38:52 -0800 (PST) (envelope-from freebsd-rwg) From: "Rodney W. Grimes" Message-Id: <201703010538.v215cqqW053998@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r314464 - head/usr.sbin/yppush In-Reply-To: <201703010424.v214OPdB018960@repo.freebsd.org> To: Ngie Cooper Date: Tue, 28 Feb 2017 21:38:52 -0800 (PST) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Mar 2017 05:38:57 -0000 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