svn commit: r284394 - head

Craig Rodrigues rodrigc at FreeBSD.org
Sun Jun 14 22:36:28 UTC 2015


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


More information about the svn-src-head mailing list