From owner-svn-src-all@FreeBSD.ORG Tue May 6 12:31:18 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0EC84A0D; Tue, 6 May 2014 12:31:18 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F10DD3BB; Tue, 6 May 2014 12:31:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s46CVHit087259; Tue, 6 May 2014 12:31:17 GMT (envelope-from se@svn.freebsd.org) Received: (from se@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s46CVH1j087258; Tue, 6 May 2014 12:31:17 GMT (envelope-from se@svn.freebsd.org) Message-Id: <201405061231.s46CVH1j087258@svn.freebsd.org> From: Stefan Esser Date: Tue, 6 May 2014 12:31:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r265436 - head/usr.bin/bmake X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2014 12:31:18 -0000 Author: se Date: Tue May 6 12:31:17 2014 New Revision: 265436 URL: http://svnweb.freebsd.org/changeset/base/265436 Log: Fix include statement to accept src.opts.mk from a source directory instead of from /usr/share/mk. I'm not sure that this will let buildworld complete on a system with no installed src.opts.mk (make buildworld is still running), but the tinderbox builds are all failing earlyon without this patch. Modified: head/usr.bin/bmake/Makefile.inc Modified: head/usr.bin/bmake/Makefile.inc ============================================================================== --- head/usr.bin/bmake/Makefile.inc Tue May 6 12:20:07 2014 (r265435) +++ head/usr.bin/bmake/Makefile.inc Tue May 6 12:31:17 2014 (r265436) @@ -1,6 +1,6 @@ # $FreeBSD$ -.include "src.opts.mk" +.include .if defined(.PARSEDIR) # make sure this is available to unit-tests/Makefile