projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e99e56a
)
Remove a redundant os.EX_OK check that exit_status_check() already
author
Zac Medico
<zmedico@gentoo.org>
Tue, 27 Nov 2007 21:16:53 +0000
(21:16 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Tue, 27 Nov 2007 21:16:53 +0000
(21:16 -0000)
handles internally.
svn path=/main/trunk/; revision=8712
pym/portage/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/__init__.py
b/pym/portage/__init__.py
index d3f87ae4016989ea6df340d43ab253c6392b9c4e..127f0ee8b3b83d071c7ba72376c827439a461e81 100644
(file)
--- a/
pym/portage/__init__.py
+++ b/
pym/portage/__init__.py
@@
-4537,8
+4537,7
@@
def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0,
elif mydo=="merge":
retval = spawnebuild("install", actionmap, mysettings, debug,
alwaysdep=1, logfile=logfile)
- if retval == os.EX_OK:
- retval = exit_status_check(retval)
+ retval = exit_status_check(retval)
if retval != os.EX_OK:
# The merge phase handles this already. Callers don't know how
# far this function got, so we have to call elog_process() here