From: Zac Medico Date: Mon, 26 Nov 2007 22:19:15 +0000 (-0000) Subject: Make doebuild() use EBUILD_EXIT_STATUS_FILE sanity checks for the X-Git-Tag: v2.2_pre1~303 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0e8466dcfded0244061a48b0fbc7b12942fea7d2;p=portage.git Make doebuild() use EBUILD_EXIT_STATUS_FILE sanity checks for the extra misc-functions.sh preinst/postinst shell code. svn path=/main/trunk/; revision=8698 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index b6bb08d8e..79e559d69 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -4321,6 +4321,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0, mysettings["EBUILD_PHASE"] = "" phase_retval = spawn(" ".join(myargs), mysettings, debug=debug, free=1, logfile=logfile) + phase_retval = exit_status_check(phase_retval) if phase_retval != os.EX_OK: writemsg("!!! post preinst failed; exiting.\n", noiselevel=-1) @@ -4337,6 +4338,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0, mysettings["EBUILD_PHASE"] = "" phase_retval = spawn(" ".join(myargs), mysettings, debug=debug, free=1, logfile=logfile) + phase_retval = exit_status_check(phase_retval) if phase_retval != os.EX_OK: writemsg("!!! post postinst failed; exiting.\n", noiselevel=-1)