diff options
author | Zac Medico <zmedico@gentoo.org> | 2011-07-13 17:36:24 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2011-07-13 17:36:24 -0700 |
commit | f1d21db028b643c9d6a85afb2dfd6acb35ea52a1 (patch) | |
tree | 79131bdce1615a452b2937caf8d2753f44bbc41f | |
parent | fad5fbffa2d59964e29dca4cc231ba0168d39ce2 (diff) | |
download | portage-f1d21db028b643c9d6a85afb2dfd6acb35ea52a1.tar.gz portage-f1d21db028b643c9d6a85afb2dfd6acb35ea52a1.tar.bz2 portage-f1d21db028b643c9d6a85afb2dfd6acb35ea52a1.zip |
Revert "ebuild(1): allow-missing-manifests for fetch"
This reverts commit 62712db56bb863b4eb0a9d9c52e7b2c3ad38df66.
This code already defaulted to the allow-missing-manifests behavior,
since the fetch() allow_missing_digests argument default is true. By
making the argument conditional on allow-missing-manifests, it changed
the behavior in the default case where allow-missing-manifests is
disabled.
-rw-r--r-- | pym/portage/package/ebuild/doebuild.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/pym/portage/package/ebuild/doebuild.py b/pym/portage/package/ebuild/doebuild.py index 26afbc28e..1849af94f 100644 --- a/pym/portage/package/ebuild/doebuild.py +++ b/pym/portage/package/ebuild/doebuild.py @@ -764,11 +764,9 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0, fetchme = aalist else: fetchme = alist - allow_missing_manifests = \ - "allow-missing-manifests" in mysettings.features + if not fetch(fetchme, mysettings, listonly=listonly, - fetchonly=fetchonly, - allow_missing_digests=allow_missing_manifests): + fetchonly=fetchonly, allow_missing_digests=True): spawn_nofetch(mydbapi, myebuild, settings=mysettings) if listonly: # The convention for listonly mode is to report |