From: Zac Medico Date: Sat, 8 Dec 2007 23:02:45 +0000 (-0000) Subject: Do an EBUILD_EXIT_STATUS_FILE sanity check in spawnebuild() X-Git-Tag: v2.1.4~129 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e0838f94ba133bf6c514f84fe606f1b15956f6f9;p=portage.git Do an EBUILD_EXIT_STATUS_FILE sanity check in spawnebuild() where it spawns misc-functions.sh after the install phase. (trunk r8874) svn path=/main/branches/2.1.2/; revision=8875 --- diff --git a/pym/portage.py b/pym/portage.py index fad76b650..4ce2e7f50 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -3716,6 +3716,8 @@ def spawnebuild(mydo,actionmap,mysettings,debug,alwaysdep=0,logfile=None): os.path.basename(MISC_SH_BINARY)) mycommand = " ".join([_shell_quote(misc_sh_binary), "install_qa_check", "install_symlink_html_docs"]) + _doebuild_exit_status_unlink( + mysettings.get("EBUILD_EXIT_STATUS_FILE")) filter_calling_env_state = mysettings._filter_calling_env if os.path.exists(os.path.join(mysettings["T"], "environment")): mysettings._filter_calling_env = True @@ -3724,7 +3726,14 @@ def spawnebuild(mydo,actionmap,mysettings,debug,alwaysdep=0,logfile=None): logfile=logfile, **kwargs) finally: mysettings._filter_calling_env = filter_calling_env_state - if qa_retval: + msg = _doebuild_exit_status_check(mydo, mysettings) + if msg: + qa_retval = 1 + from textwrap import wrap + mysettings["EBUILD_PHASE"] = mydo + _eerror(mysettings, wrap(msg, 72)) + mysettings["EBUILD_PHASE"] = "" + if qa_retval != os.EX_OK: writemsg("!!! install_qa_check failed; exiting.\n", noiselevel=-1) return qa_retval