From owner-svn-src-all@freebsd.org Sun Oct 1 23:40:58 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 7585DE31112; Sun, 1 Oct 2017 23:40:58 +0000 (UTC) (envelope-from freebsd@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 5433172E83; Sun, 1 Oct 2017 23:40:57 +0000 (UTC) (envelope-from freebsd@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 v91NenM9042165; Sun, 1 Oct 2017 16:40:49 -0700 (PDT) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id v91NenH3042164; Sun, 1 Oct 2017 16:40:49 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201710012340.v91NenH3042164@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r324132 - stable/10 In-Reply-To: <201709302006.v8UK6aXc024104@repo.freebsd.org> To: Ngie Cooper Date: Sun, 1 Oct 2017 16:40:49 -0700 (PDT) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Reply-To: rgrimes@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: Sun, 01 Oct 2017 23:40:58 -0000 > 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