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:
Simon J. Gerraty 2013-09-06 02:57:15 +00:00
parent 2d395cb507
commit 7261834d28
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=255286

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