From owner-svn-src-projects@FreeBSD.ORG Wed Oct 16 16:05:49 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AD7EA6C5; Wed, 16 Oct 2013 16:05:49 +0000 (UTC) (envelope-from sjg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 998D228FC; Wed, 16 Oct 2013 16:05:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9GG5nl7016529; Wed, 16 Oct 2013 16:05:49 GMT (envelope-from sjg@svn.freebsd.org) Received: (from sjg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9GG5nKi016528; Wed, 16 Oct 2013 16:05:49 GMT (envelope-from sjg@svn.freebsd.org) Message-Id: <201310161605.r9GG5nKi016528@svn.freebsd.org> From: "Simon J. Gerraty" Date: Wed, 16 Oct 2013 16:05:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r256636 - projects/bmake X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Oct 2013 16:05:49 -0000 Author: sjg Date: Wed Oct 16 16:05:49 2013 New Revision: 256636 URL: http://svnweb.freebsd.org/changeset/base/256636 Log: Make it possible to buildworld, while producing .meta files to aid debugging. Modified: projects/bmake/Makefile Modified: projects/bmake/Makefile ============================================================================== --- projects/bmake/Makefile Wed Oct 16 16:05:12 2013 (r256635) +++ projects/bmake/Makefile Wed Oct 16 16:05:49 2013 (r256636) @@ -500,11 +500,19 @@ buildLINT: ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT .if defined(.PARSEDIR) -# this makefile does not run in meta mode +# This makefile does not run in meta mode .MAKE.MODE= normal -# make sure things we run from here don't either +# Normally the things we run from here don't either. +# Using -DWITH_META_FILES -DWITHOUT_STAGING +# we can buildworld with meta files created which are useful +# for debugging, but without any of the rest of a meta mode build. +.ifndef WITH_META_FILES WITHOUT_META_MODE= .export WITHOUT_META_MODE +.else +UPDATE_DEPENDFILE=NO +.export UPDATE_DEPENDFILE +.endif .if make(universe) # we do not want a failure of one branch abort all.