From owner-svn-src-all@freebsd.org Fri Jul 3 17:08:29 2015 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 D0B65994AB7; Fri, 3 Jul 2015 17:08:29 +0000 (UTC) (envelope-from royger@gmail.com) Received: from mail-wi0-x22b.google.com (mail-wi0-x22b.google.com [IPv6:2a00:1450:400c:c05::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 64E301DC9; Fri, 3 Jul 2015 17:08:29 +0000 (UTC) (envelope-from royger@gmail.com) Received: by wiwl6 with SMTP id l6so232303321wiw.0; Fri, 03 Jul 2015 10:08:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=kmgBXZdp3EWt4EGWToWGPC2E5DqimT8lGzxUAeRD8OA=; b=X0wd6mYV1UNf5FqimphFWMdAhhiShZ3qJQfI6G9YFJb/FcGWeFQKEPk85Ww2O0OeH6 s+nLcFK2Px3toEMVjU1w0O/UD7dVkR992kE/vW+rWnRAniqFb2IpKtddRpMgicZumISl m+0VKM3wdiqaqOroQXI9EOB66Y+m0rJ53UyUKTOXKvN9UeKQfjxqzPVFOSpGJv2gRvSn cc0U2w12oED5UpQj8XZdKS5snuln39rZf6LsmBkdQD776F0bpPOWMalibbzuzS6+RBJl lcVxVcE92XIiVmzr1hLxmWpVpIkqx1MyyBw8Oarz/UdRaR0EQtqJbDGyPR0g+UqtkpkG EdQg== X-Received: by 10.194.134.9 with SMTP id pg9mr74473686wjb.5.1435943307696; Fri, 03 Jul 2015 10:08:27 -0700 (PDT) Received: from [172.16.1.30] (5.Red-79-156-191.staticIP.rima-tde.net. [79.156.191.5]) by mx.google.com with ESMTPSA id um5sm14242160wjc.1.2015.07.03.10.08.25 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 03 Jul 2015 10:08:26 -0700 (PDT) Sender: =?UTF-8?Q?Roger_Pau_Monn=C3=A9?= Message-ID: <5596C188.10404@FreeBSD.org> Date: Fri, 03 Jul 2015 19:08:24 +0200 From: =?UTF-8?B?Um9nZXIgUGF1IE1vbm7DqQ==?= User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Warner Losh , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r285068 - in head/sys: conf modules/agp modules/geom/geom_part/geom_part_apm modules/geom/geom_part/geom_part_bsd modules/geom/geom_part/geom_part_bsd64 modules/geom/geom_part/geom_part... References: <201507030150.t631oRd0039490@repo.freebsd.org> In-Reply-To: <201507030150.t631oRd0039490@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 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: Fri, 03 Jul 2015 17:08:29 -0000 El 03/07/15 a les 3.50, Warner Losh ha escrit: > Author: imp > Date: Fri Jul 3 01:50:26 2015 > New Revision: 285068 > URL: https://svnweb.freebsd.org/changeset/base/285068 > > Log: > Kill MFILES and find things automatically. It turned out to be only > lightly used. Find the proper .m file when we depend on *_if.[ch] in > the srcs line, with seat-belts for false positive matches. This uses > make's path mechanism. A further refinement would be to calculate this > once, and then pass the resulting _MPATH to modules submakes. This makes building the kernel from a NFS share extremely slow, I've been waiting for >2h for a simple buildkernel to finish, and I ended up killing it in order to bisect what was causing this (and it was still at the "make dependencies" phase only). Roger.