Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Aug 2014 00:33:37 +0000 (UTC)
From:      Ian Lepore <ian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r270190 - head/tools/build/make_check
Message-ID:  <201408200033.s7K0XbNw057003@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ian
Date: Wed Aug 20 00:33:37 2014
New Revision: 270190
URL: http://svnweb.freebsd.org/changeset/base/270190

Log:
  Don't stop other legs of a parallel build due to a failure in make_check.
  The whole point is to see if there's any failure, which is handled by
  building a newer version of make.

Modified:
  head/tools/build/make_check/Makefile

Modified: head/tools/build/make_check/Makefile
==============================================================================
--- head/tools/build/make_check/Makefile	Wed Aug 20 00:14:41 2014	(r270189)
+++ head/tools/build/make_check/Makefile	Wed Aug 20 00:33:37 2014	(r270190)
@@ -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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408200033.s7K0XbNw057003>