svn commit: r255286 - head

Simon J. Gerraty sjg at FreeBSD.org
Fri Sep 6 02:57:16 UTC 2013


Author: sjg
Date: Fri Sep  6 02:57:15 2013
New Revision: 255286
URL: http://svnweb.freebsd.org/changeset/base/255286

Log:
  During universe/tinderbox export MAKE_JOB_ERROR_TOKEN=no
  This avoids aborting everything when one kernel fails.
  
  Reviewed by:	obrien

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Fri Sep  6 02:55:51 2013	(r255285)
+++ head/Makefile	Fri Sep  6 02:57:15 2013	(r255286)
@@ -498,3 +498,11 @@ universe_epilogue:
 
 buildLINT:
 	${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT
+
+.if defined(.PARSEDIR)
+.if make(universe)
+# we do not want a failure of one branch abort all.
+MAKE_JOB_ERROR_TOKEN= no
+.export MAKE_JOB_ERROR_TOKEN
+.endif
+.endif


More information about the svn-src-head mailing list