svn commit: r321340 - stable/11
Bryan Drewery
bdrewery at FreeBSD.org
Fri Jul 21 17:58:00 UTC 2017
Author: bdrewery
Date: Fri Jul 21 17:57:59 2017
New Revision: 321340
URL: https://svnweb.freebsd.org/changeset/base/321340
Log:
MFC r320273:
Allow ALWAYS_BOOTSTRAP_MAKE to force bmake bootstrapping.
Modified:
stable/11/Makefile
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/Makefile
==============================================================================
--- stable/11/Makefile Fri Jul 21 17:57:10 2017 (r321339)
+++ stable/11/Makefile Fri Jul 21 17:57:59 2017 (r321340)
@@ -195,7 +195,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-all
mailing list