svn commit: r276256 - stable/10/tools/build/make_check

Ian Lepore ian at FreeBSD.org
Fri Dec 26 21:40:47 UTC 2014


Author: ian
Date: Fri Dec 26 21:40:45 2014
New Revision: 276256
URL: https://svnweb.freebsd.org/changeset/base/276256

Log:
  MFC r270190: Don't kill parallel jobs on (expected) failure of make_check.

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

Modified: stable/10/tools/build/make_check/Makefile
==============================================================================
--- stable/10/tools/build/make_check/Makefile	Fri Dec 26 21:11:33 2014	(r276255)
+++ stable/10/tools/build/make_check/Makefile	Fri Dec 26 21:40:45 2014	(r276256)
@@ -2,6 +2,9 @@
 
 .MAKE.MODE=	normal
 
+# Failure is handled by the invoker, don't kill other legs of a parallel build.
+MAKE_JOB_ERROR_TOKEN=no
+
 # Test for broken LHS expansion.
 # This *must* cause make(1) to detect a recursive variable, and fail as such.
 .if make(lhs_expn)


More information about the svn-src-stable mailing list