From owner-cvs-all@FreeBSD.ORG Tue Jan 22 19:22:23 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB86316A421; Tue, 22 Jan 2008 19:22:23 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 8F99F13C46A; Tue, 22 Jan 2008 19:22:23 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.1/8.14.1) with ESMTP id m0MJHdaQ055937; Tue, 22 Jan 2008 12:17:39 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Tue, 22 Jan 2008 12:20:59 -0700 (MST) Message-Id: <20080122.122059.270770161.imp@bsdimp.com> To: obrien@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20080122191705.GA9070@dragon.NUXI.org> References: <20080122.102940.1586015611.imp@bsdimp.com> <20080122190040.GA47055@team.vega.ru> <20080122191705.GA9070@dragon.NUXI.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, ru@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 src/tools/build Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Jan 2008 19:22:23 -0000 In message: <20080122191705.GA9070@dragon.NUXI.org> "David O'Brien" writes: : On Tue, Jan 22, 2008 at 10:00:40PM +0300, Ruslan Ermilov wrote: : > How about if we restore the check whose aim was to avoid cluttering : > mailing lists with questions about upsupported source upgrades, but : > make it correspond to 6.0-RELEASE: : > : > %%% : > Index: Makefile.inc1 : > =================================================================== : > RCS file: /home/ncvs/src/Makefile.inc1,v : > retrieving revision 1.594 : > diff -u -p -r1.594 Makefile.inc1 : > --- Makefile.inc1 22 Jan 2008 15:57:57 -0000 1.594 : > +++ Makefile.inc1 22 Jan 2008 18:58:35 -0000 : > @@ -841,6 +841,10 @@ update: : > # legacy: Build compatibility shims for the next three targets : > # : > legacy: : > +.if ${BOOTSTRAPPING} < 600034 : > + @echo "ERROR: Source upgrades from versions prior to 6.0 not supported."; \ : > + false : > +.endif : : I see your point here. Should I add this back? It does break BOOTSTRAPPING=0 case, which would be nice to keep working. Err, fix, since the last set of changes also broke it. Warner