svn commit: r321341 - stable/10

Bryan Drewery bdrewery at FreeBSD.org
Fri Jul 21 17:58:07 UTC 2017


Author: bdrewery
Date: Fri Jul 21 17:58:06 2017
New Revision: 321341
URL: https://svnweb.freebsd.org/changeset/base/321341

Log:
  MFC r320273:
  
    Allow ALWAYS_BOOTSTRAP_MAKE to force bmake bootstrapping.

Modified:
  stable/10/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/Makefile
==============================================================================
--- stable/10/Makefile	Fri Jul 21 17:57:59 2017	(r321340)
+++ stable/10/Makefile	Fri Jul 21 17:58:06 2017	(r321341)
@@ -156,7 +156,8 @@ HAVE_MAKE=	bmake
 .else
 HAVE_MAKE=	fmake
 .endif
-.if ${HAVE_MAKE} != ${WANT_MAKE} || \
+.if defined(ALWAYS_BOOTSTRAP_MAKE) || \
+    ${HAVE_MAKE} != ${WANT_MAKE} || \
     (defined(WANT_MAKE_VERSION) && ${MAKE_VERSION} < ${WANT_MAKE_VERSION})
 NEED_MAKE_UPGRADE= t
 .endif


More information about the svn-src-stable-10 mailing list