Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Jun 2015 22:36:28 +0000 (UTC)
From:      Craig Rodrigues <rodrigc@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r284394 - head
Message-ID:  <201506142236.t5EMaSG2076476@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rodrigc
Date: Sun Jun 14 22:36:27 2015
New Revision: 284394
URL: https://svnweb.freebsd.org/changeset/base/284394

Log:
  If MK_META_MODE is unset, assume a value of no.
  
  This is needed to build HEAD on FreeBSD 10.1,
  which has bmake, but does not have
  /usr/share/mk/src.opts.mk
  
  Reviewed by: sjg
  Reported by: jenkins

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- 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} == "yes"
+.if ${MK_META_MODE:Uno} == "yes"
 # targets/Makefile plays the role of top-level
 .include "targets/Makefile"
 .else



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506142236.t5EMaSG2076476>