summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2013-09-06 02:57:15 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2013-09-06 02:57:15 +0000
commit7261834d286ee4cb6eeb7ee0e4c99e16bca73216 (patch)
treee94ea0ab8fdd9a7729162c491d2c363ae50b34ba /Makefile
parent2d395cb50730d1c3197b2c2656d88f28c62b7f42 (diff)
downloadsrc-test2-7261834d286ee4cb6eeb7ee0e4c99e16bca73216.tar.gz
src-test2-7261834d286ee4cb6eeb7ee0e4c99e16bca73216.zip
During universe/tinderbox export MAKE_JOB_ERROR_TOKEN=no
This avoids aborting everything when one kernel fails. Reviewed by: obrien
Notes
Notes: svn path=/head/; revision=255286
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d002ca767e9c..d324c7dba9e3 100644
--- a/Makefile
+++ b/Makefile
@@ -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