Date: Sun, 1 Oct 2017 16:40:49 -0700 (PDT) From: "Rodney W. Grimes" <freebsd@pdx.rh.CN85.dnsmgr.net> To: Ngie Cooper <ngie@freebsd.org> Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: Re: svn commit: r324132 - stable/10 Message-ID: <201710012340.v91NenH3042164@pdx.rh.CN85.dnsmgr.net> In-Reply-To: <201709302006.v8UK6aXc024104@repo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
> Author: ngie > Date: Sat Sep 30 20:06:36 2017 > New Revision: 324132 > URL: https://svnweb.freebsd.org/changeset/base/324132 > > Log: > MFC r321845: > > Standardize on SRCTOP instead of .CURDIR-relative paths It looks like the commit message and the commit do not match, near this commit you also did merges of this change to 11, is this just a commit message error? Thanks, > Modified: > stable/10/Makefile.inc1 > Directory Properties: > stable/10/ (props changed) > > Modified: stable/10/Makefile.inc1 > ============================================================================== > --- stable/10/Makefile.inc1 Sat Sep 30 19:54:30 2017 (r324131) > +++ stable/10/Makefile.inc1 Sat Sep 30 20:06:36 2017 (r324132) > @@ -1460,9 +1460,14 @@ _gcc_tools= gnu/usr.bin/cc/cc_tools > _rescue= rescue/rescue > .endif > > +.if ${MK_TCSH} != "no" > +_tcsh=bin/csh > +.endif > + > build-tools: .MAKE > + > .for _tool in \ > - bin/csh \ > + ${_tcsh} \ > bin/sh \ > ${_rescue} \ > ${LOCAL_TOOL_DIRS} \ > @@ -1580,7 +1585,7 @@ native-xtools: .PHONY > bin/cat \ > bin/chmod \ > bin/cp \ > - bin/csh \ > + ${_tcsh} \ > bin/echo \ > bin/expr \ > bin/hostname \ > > -- Rod Grimes rgrimes@freebsd.org
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710012340.v91NenH3042164>