From owner-svn-src-all@FreeBSD.ORG Tue Nov 17 19:35:39 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87A181065698; Tue, 17 Nov 2009 19:35:39 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 76BAE8FC1A; Tue, 17 Nov 2009 19:35:39 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nAHJZddU033171; Tue, 17 Nov 2009 19:35:39 GMT (envelope-from obrien@svn.freebsd.org) Received: (from obrien@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nAHJZdbQ033168; Tue, 17 Nov 2009 19:35:39 GMT (envelope-from obrien@svn.freebsd.org) Message-Id: <200911171935.nAHJZdbQ033168@svn.freebsd.org> From: "David E. O'Brien" Date: Tue, 17 Nov 2009 19:35:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r199419 - head/usr.bin/make X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 17 Nov 2009 19:35:39 -0000 Author: obrien Date: Tue Nov 17 19:35:39 2009 New Revision: 199419 URL: http://svn.freebsd.org/changeset/base/199419 Log: Catch up with r144020's /Dir_FindFile/Path_FindFile/ Modified: head/usr.bin/make/arch.c head/usr.bin/make/dir.c Modified: head/usr.bin/make/arch.c ============================================================================== --- head/usr.bin/make/arch.c Tue Nov 17 19:24:26 2009 (r199418) +++ head/usr.bin/make/arch.c Tue Nov 17 19:35:39 2009 (r199419) @@ -1131,7 +1131,7 @@ Arch_MemMTime(GNode *gn) * command (or the linker will know where to find it) and set the * TARGET variable for this node to be the node's name. Otherwise, * we set the TARGET variable to be the full path of the library, - * as returned by Dir_FindFile. + * as returned by Path_FindFile. * *----------------------------------------------------------------------- */ Modified: head/usr.bin/make/dir.c ============================================================================== --- head/usr.bin/make/dir.c Tue Nov 17 19:24:26 2009 (r199418) +++ head/usr.bin/make/dir.c Tue Nov 17 19:35:39 2009 (r199419) @@ -862,7 +862,7 @@ Path_FindFile(char *name, struct Path *p * * Side Effects: * The modification time is placed in the node's mtime slot. - * If the node didn't have a path entry before, and Dir_FindFile + * If the node didn't have a path entry before, and Path_FindFile * found one for it, the full name is placed in the path slot. *----------------------------------------------------------------------- */