diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-08-23 09:11:03 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-08-23 09:11:03 +0000 |
commit | 62dc399102cc0bb1ef4d67bea71e6e6db4da10e1 (patch) | |
tree | dfd6a569416e1065a084d5534ea66cd8509ac1d9 | |
parent | eea7a780bc0d59f245ac7ad30f28d0008cd33757 (diff) | |
download | portage-62dc399102cc0bb1ef4d67bea71e6e6db4da10e1.tar.gz portage-62dc399102cc0bb1ef4d67bea71e6e6db4da10e1.tar.bz2 portage-62dc399102cc0bb1ef4d67bea71e6e6db4da10e1.zip |
Bug #189791 - Define EBUILD_PHASE=unpack during the nofetch phase since otherwise we get EBUILD_PHASE=merge which isn't in our list of valid EBUILD_PHASES recognized by elog.
svn path=/main/trunk/; revision=7684
-rw-r--r-- | pym/portage/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index c05625ce2..7b2fa539c 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3001,6 +3001,7 @@ def fetch(myuris, mysettings, listonly=0, fetchonly=0, locks_in_subdir=".locks", "ebuild's files must be downloaded" print "!!! manually. See the comments in" + \ " the ebuild for more information.\n" + mysettings["EBUILD_PHASE"] = "unpack" spawn(EBUILD_SH_BINARY + " nofetch", mysettings) elif listonly: continue |