Date: Fri, 6 Sep 2013 02:57:16 +0000 (UTC) From: "Simon J. Gerraty" <sjg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r255286 - head Message-ID: <201309060257.r862vGBf017645@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309060257.r862vGBf017645>