Date: Wed, 20 Aug 2014 00:06:54 +0000 (UTC) From: Ian Lepore <ian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r270188 - stable/8 Message-ID: <201408200006.s7K06sCG043506@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ian Date: Wed Aug 20 00:06:54 2014 New Revision: 270188 URL: http://svnweb.freebsd.org/changeset/base/270188 Log: MFC r255286: don't stop the whole universe build if one kernel fails. Modified: stable/8/Makefile (contents, props changed) Modified: stable/8/Makefile ============================================================================== --- stable/8/Makefile Tue Aug 19 23:33:51 2014 (r270187) +++ stable/8/Makefile Wed Aug 20 00:06:54 2014 (r270188) @@ -372,3 +372,11 @@ universe_epilogue: fi .endif .endif + +.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?201408200006.s7K06sCG043506>