svn commit: r297035 - stable/10

Bryan Drewery bdrewery at FreeBSD.org
Fri Mar 18 18:24:37 UTC 2016


Author: bdrewery
Date: Fri Mar 18 18:24:36 2016
New Revision: 297035
URL: https://svnweb.freebsd.org/changeset/base/297035

Log:
  MFC r296643:
  
    Fix make -n upgrade_checks.

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

Modified: stable/10/Makefile
==============================================================================
--- stable/10/Makefile	Fri Mar 18 17:32:20 2016	(r297034)
+++ stable/10/Makefile	Fri Mar 18 18:24:36 2016	(r297035)
@@ -336,7 +336,7 @@ kernel: buildkernel installkernel
 upgrade_checks:
 .if ${HAVE_MAKE} != ${WANT_MAKE} || \
     (defined(WANT_MAKE_VERSION) && ${MAKE_VERSION} < ${WANT_MAKE_VERSION})
-	@(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,})
+	@${_+_}(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,})
 .elif ${WANT_MAKE} == "fmake"
 	@if ! (cd ${.CURDIR}/tools/build/make_check && \
 	    PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \


More information about the svn-src-all mailing list