During universe/tinderbox export MAKE_JOB_ERROR_TOKEN=no

This avoids aborting everything when one kernel fails.

Reviewed by:	obrien
This commit is contained in:
sjg 2013-09-06 02:57:15 +00:00
parent 8e87a06e3b
commit 4a6a9b0a75

View File

@ -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