From owner-svn-src-head@FreeBSD.ORG Mon Jun 15 02:29:07 2015 Return-Path: Delivered-To: svn-src-head@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69B921C7; Mon, 15 Jun 2015 02:29:07 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pd0-x22c.google.com (mail-pd0-x22c.google.com [IPv6:2607:f8b0:400e:c02::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 39661E0D; Mon, 15 Jun 2015 02:29:07 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pdbki1 with SMTP id ki1so61937031pdb.1; Sun, 14 Jun 2015 19:29:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=zZ4OzD/X09WenH/7ga7HAo8Pz8PXYx+SS0j3QmYEWiE=; b=nrZAKvhCn4MGGGcf35F9oQVdsxXWRh7TlgZudB8hnqKvFhDo0S+ymd5naBK9VW9t37 GyTNmCRtUBRQVKTMw0KD3LIZQXlPDcOsk35rdOJHYh2kGqckwEJl16EzZWhi8R3CbRBs xB0fuYdGczfThDHlG/vAkx3s5rh1x00Te5p1n+57WDp/PUJdRIRaFD1mBWzyQqjRXYYn ky6dmpxvrD1VeTTCaaDSdDqBDsbayKDokPnT/J8bQ12eq52jhOzYABMHzyHm+jmBLwhi IegSaF30mrpU9DrFoltdoFMS6Z4i5HNodrFA8lpN2adSGZfSKlWOzEfMrnrbmTc6Ao9h v2WA== X-Received: by 10.70.124.165 with SMTP id mj5mr25304121pdb.159.1434335346696; Sun, 14 Jun 2015 19:29:06 -0700 (PDT) Received: from [33.171.226.134] (m862036d0.tmodns.net. [208.54.32.134]) by mx.google.com with ESMTPSA id de4sm10351005pbb.95.2015.06.14.19.29.05 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 14 Jun 2015 19:29:06 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (1.0) Subject: Re: svn commit: r284394 - head From: Garrett Cooper X-Mailer: iPhone Mail (12F70) In-Reply-To: <201506142236.t5EMaSG2076476@svn.freebsd.org> Date: Sun, 14 Jun 2015 19:29:04 -0700 Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: <92B39E07-0843-44B0-9773-38B762729000@gmail.com> References: <201506142236.t5EMaSG2076476@svn.freebsd.org> To: Craig Rodrigues X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 02:29:07 -0000 That won't fix fmake... > On Jun 14, 2015, at 15:36, Craig Rodrigues wrote: >=20 > Author: rodrigc > Date: Sun Jun 14 22:36:27 2015 > New Revision: 284394 > URL: https://svnweb.freebsd.org/changeset/base/284394 >=20 > Log: > If MK_META_MODE is unset, assume a value of no. >=20 > This is needed to build HEAD on FreeBSD 10.1, > which has bmake, but does not have > /usr/share/mk/src.opts.mk >=20 > Reviewed by: sjg > Reported by: jenkins >=20 > Modified: > head/Makefile >=20 > Modified: head/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D > --- head/Makefile Sun Jun 14 22:14:00 2015 (r284393) > +++ head/Makefile Sun Jun 14 22:36:27 2015 (r284394) > @@ -99,7 +99,7 @@ > # > # For more information, see the build(7) manual page. > # > -.if ${MK_META_MODE} =3D=3D "yes" > +.if ${MK_META_MODE:Uno} =3D=3D "yes" > # targets/Makefile plays the role of top-level > .include "targets/Makefile" > .else >=20