From ce313966c95b66a64e3c1d2287eeceb34b0dca84 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 23 Sep 2006 09:47:16 +0000 Subject: Always check the return value of doebuild_environment(). svn path=/main/trunk/; revision=4513 --- pym/portage.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pym') diff --git a/pym/portage.py b/pym/portage.py index 6024f699d..2b9f532ca 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -2632,6 +2632,7 @@ def doebuild_environment(myebuild, mydo, myroot, mysettings, debug, use_cache, m # Allow color.map to control colors associated with einfo, ewarn, etc... for c in ("GOOD", "WARN", "BAD", "HILITE", "BRACKET"): mysettings[c] = output.codes[c] + return os.EX_OK def prepare_build_dirs(myroot, mysettings, cleanup): @@ -2843,7 +2844,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0, mystatus = doebuild_environment(myebuild, mydo, myroot, mysettings, debug, use_cache, mydbapi) - if mystatus: + if mystatus != os.EX_OK: return mystatus # get possible slot information from the deps file -- cgit v1.2.3-1-g7c22