From owner-freebsd-tinderbox@FreeBSD.ORG Tue Aug 10 09:41:57 2004 Return-Path: Delivered-To: freebsd-tinderbox@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EACE16A4CE; Tue, 10 Aug 2004 09:41:57 +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 A6D6C43D54; Tue, 10 Aug 2004 09:41:55 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i7A9frX122620; Tue, 10 Aug 2004 11:41:54 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i7A9fpf453098; Tue, 10 Aug 2004 11:41:51 +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 i7A9fpe10015; Tue, 10 Aug 2004 11:41:51 +0200 (MET DST) Date: Tue, 10 Aug 2004 11:41:52 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: Ruslan Ermilov In-Reply-To: <20040810093804.GA16437@ip.net.ua> Message-ID: <20040810113908.D42422@beagle.kn.op.dlr.de> References: <20040810085521.ACF137303F@freebsd-current.sentex.ca> <20040810111959.K42422@beagle.kn.op.dlr.de> <20040810093804.GA16437@ip.net.ua> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: alpha@freebsd.org cc: FreeBSD Tinderbox cc: "Simon L. Nielsen" cc: current@freebsd.org Subject: Re: [current tinderbox] failure on alpha/alpha X-BeenThere: freebsd-tinderbox@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: Tinderbox reports, responses, and meta-comments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 09:41:57 -0000 On Tue, 10 Aug 2004, Ruslan Ermilov wrote: RE>On Tue, Aug 10, 2004 at 11:20:20AM +0200, Harti Brandt wrote: RE>> On Tue, 10 Aug 2004, Simon L. Nielsen wrote: RE>> RE>> SLN>On 2004.08.10 11:04:49 +0200, Harti Brandt wrote: RE>> SLN> RE>> SLN>> where can I find the complete tinderbox logs? The machine where they RE>> SLN>> are running is telling me that it is under maintenance. RE>> SLN> RE>> SLN>At http://freebsd-current.sentex.ca/tinderbox/ . There is also a link RE>> SLN>to it from http://www.freebsd.org/projects/ (that might be simpler to RE>> SLN>remember for later). RE>> RE>> Thanks. RE>> RE>I know what's happening here. RE> RE>: TB --- 2004-08-10 08:55:21 - WARNING: /usr/bin/make returned exit code 1 RE> ^^^^^^^^^^^^^ RE> RE>The rescue/ uses crunchgen(1) which used to emit these bogus RE>MAKE assignments into the generated .mk files, so this new RE>``+@for'' construct in bsd.subdir.mk breaks. Ok, I was suspecting this. I'll do a buildworld with your patch... harti RE> RE>Now we need to make sure to update crunchgen(1). This can be RE>fixed with the following change: RE> RE>%%% RE>Index: Makefile.inc1 RE>=================================================================== RE>RCS file: /home/ncvs/src/Makefile.inc1,v RE>retrieving revision 1.434 RE>diff -u -r1.434 Makefile.inc1 RE>--- Makefile.inc1 9 Aug 2004 11:38:41 -0000 1.434 RE>+++ Makefile.inc1 10 Aug 2004 09:36:53 -0000 RE>@@ -722,7 +722,7 @@ RE> .endif RE> RE> .if !defined(NO_RESCUE) && \ RE>- ${BOOTSTRAPPING} < 501100 RE>+ ${BOOTSTRAPPING} < 502128 RE> _crunchgen= usr.sbin/crunch/crunchgen RE> .endif RE> RE>%%% RE> RE> RE>Cheers, RE>