svn commit: r279034 - stable/8/tools/build/make_check

Ian Lepore ian at FreeBSD.org
Fri Feb 20 00:55:40 UTC 2015


Author: ian
Date: Fri Feb 20 00:55:38 2015
New Revision: 279034
URL: https://svnweb.freebsd.org/changeset/base/279034

Log:
  MFC r270190: Don't stop other parallel build legs on failure of make_check.

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

Modified: stable/8/tools/build/make_check/Makefile
==============================================================================
--- stable/8/tools/build/make_check/Makefile	Fri Feb 20 00:40:26 2015	(r279033)
+++ stable/8/tools/build/make_check/Makefile	Fri Feb 20 00:55:38 2015	(r279034)
@@ -1,5 +1,8 @@
 # $FreeBSD$
 
+# 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-all mailing list