From owner-cvs-all@FreeBSD.ORG Thu Jun 17 05:19:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E32316A4CF; Thu, 17 Jun 2004 05:19:26 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id A79FA43D54; Thu, 17 Jun 2004 05:19:25 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i5H5G9Yb032023; Wed, 16 Jun 2004 23:16:09 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 16 Jun 2004 23:16:25 -0600 (MDT) Message-Id: <20040616.231625.130865452.imp@bsdimp.com> To: gpr@nvnpp.vrn.ru From: "M. Warner Losh" In-Reply-To: <20040617045817.GA86953@relay.nvnpp.vrn.ru> References: <200406170259.i5H2xsfB027794@repoman.freebsd.org> <20040617045817.GA86953@relay.nvnpp.vrn.ru> X-Mailer: Mew version 3.3 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 cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: obrien@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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: Thu, 17 Jun 2004 05:19:26 -0000 In message: <20040617045817.GA86953@relay.nvnpp.vrn.ru> Gennady Proskurin writes: : Hello, David. : : On Thu, Jun 17, 2004 at 02:59:54AM +0000, David E. O'Brien wrote: : : > obrien 2004-06-17 02:59:54 UTC : > : > FreeBSD src repository : > : > Modified files: : > . Makefile.inc1 : > Log: : > Fall out from Binutils 2.15: disable building the Alpha loader. : > : > Revision Changes Path : > 1.428 +4 -1 src/Makefile.inc1 : : This breaks native buildworld for all platforms, because TARGET_ARCH is : not defined in changed place. : : === : % make buildworld : "/usr/src/Makefile.inc1", line 65: Malformed conditional (${TARGET_ARCH} == "alpha") : "/usr/src/Makefile.inc1", line 65: Need an operator : "/usr/src/Makefile.inc1", line 67: if-less endif : "/usr/src/Makefile.inc1", line 67: Need an operator : make: fatal errors encountered -- cannot continue : *** Error code 1 : : Stop in /usr/src. : Exit 1 : === : : make buildworld TARGET_ARCH=`uname -m` : works fine. I think it should really be MACHINE_ARCH instead... TARGET_ARCH is only defined in Makefile, but not Makefile.inc1. Warner