From owner-cvs-src@FreeBSD.ORG Tue Aug 10 09:35:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA95416A4CE; Tue, 10 Aug 2004 09:35:41 +0000 (GMT) Received: from n33.kp.t-systems-sfr.com (n33.kp.t-systems-sfr.com [129.247.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0051B43D53; Tue, 10 Aug 2004 09:35:40 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i7A9ZcX509480; Tue, 10 Aug 2004 11:35:38 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i7A9Zcf495540; Tue, 10 Aug 2004 11:35:38 +0200 Received: from beagle.kn.op.dlr.de (opkndnwsbsd178 [129.247.173.178]) by zeus.nt.op.dlr.de (8.11.7+Sun/8.9.1) with ESMTP id i7A9ZZe09920; Tue, 10 Aug 2004 11:35:36 +0200 (MET DST) Date: Tue, 10 Aug 2004 11:35:37 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: Pawel Jakub Dawidek In-Reply-To: <20040810093211.GA30151@darkness.comp.waw.pl> Message-ID: <20040810113324.Y42422@beagle.kn.op.dlr.de> References: <200408091054.i79As63F053925@repoman.freebsd.org> <20040810093211.GA30151@darkness.comp.waw.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/share/mk bsd.subdir.mk sys.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 09:35:41 -0000 On Tue, 10 Aug 2004, Pawel Jakub Dawidek wrote: PJD>On Mon, Aug 09, 2004 at 10:54:06AM +0000, Hartmut Brandt wrote: PJD>+> _SUBDIR: .USE PJD>+> .if defined(SUBDIR) && !empty(SUBDIR) && !defined(NO_SUBDIR) PJD>+> - @for entry in ${SUBDIR}; do \ PJD>+> + @${_+_}for entry in ${SUBDIR}; do \ PJD> PJD>This is the cause of build breakage. Anyone is working on this? No. The cause is that make in rescue was using the wrong make. When doing a buildworld and buildworld builds new tools, the entire build process should use these tools. You may look at the last commit to crunchgen.c. Now I'm investigating whether it also picks up the wrong crunchgen. That'll take a while because rescue is built nearer to the end of the build process. harti