From owner-cvs-all@FreeBSD.ORG Thu Dec 13 19:33:35 2007 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 D783016A420; Thu, 13 Dec 2007 19:33:35 +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 863B513C455; Thu, 13 Dec 2007 19:33:35 +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 lBDJTDbc001812; Thu, 13 Dec 2007 12:29:13 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Thu, 13 Dec 2007 12:28:43 -0700 (MST) Message-Id: <20071213.122843.-1827343505.imp@bsdimp.com> To: keramida@freebsd.org From: "M. Warner Losh" In-Reply-To: <20071213185208.GA3955@kobe.laptop> References: <200712130008.lBD082lO095232@repoman.freebsd.org> <200712112000.lBBK0tc3073820@repoman.freebsd.org> <20071213185208.GA3955@kobe.laptop> 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, cvs-all@freebsd.org Subject: Re: cvs commit: src 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: Thu, 13 Dec 2007 19:33:35 -0000 In message: <20071213185208.GA3955@kobe.laptop> Giorgos Keramidas writes: : On 2007-12-11 20:00, Warner Losh wrote: : > Don't assume that make(1) is a bsd-like make program. It might not : > be. This only matters in the early stages of bootstrapping, of : > course, but gnu make can't handle bsd make Makefiles at all if they : > use any of the 'dot' directives, which src/Makefile has in abudnance. : > : > Revision Changes Path : > 1.343 +5 -3 src/Makefile : : On 2007-12-13 00:08, Warner Losh wrote: : > We don't need to invent BSDMAKE. ${MAKE} is sufficient. : > : > Submitted by: jmallet@ : > : > Revision Changes Path : > 1.344 +2 -3 src/Makefile : : Cool! That sounds like a step in a good direction, so we can override : BSDMAKE in the first stages when /usr/bin/make is, say, gmake :) Yes. These two changes make it so that one can say 'gerbilmake buildworld' and have 'gerbilmake' be used for the validation and bootstrapping FreeBSD's make. Warner