From: Zac Medico Date: Tue, 29 Nov 2011 16:24:06 +0000 (-0800) Subject: doebuild: disable noauto for binary packages X-Git-Tag: v2.2.0_alpha80~83 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=10017a62b227558ed446419a2133c1584676c01c;p=portage.git doebuild: disable noauto for binary packages --- diff --git a/pym/portage/package/ebuild/doebuild.py b/pym/portage/package/ebuild/doebuild.py index 4ba523cc4..e42d9a41c 100644 --- a/pym/portage/package/ebuild/doebuild.py +++ b/pym/portage/package/ebuild/doebuild.py @@ -560,6 +560,10 @@ def doebuild(myebuild, mydo, _unused=None, settings=None, debug=0, listonly=0, os.path.dirname(os.path.dirname(pkgdir))) else: repo_config = None + # FEATURES=noauto only makes sense for porttree, and we don't want + # it to trigger redundant sourcing of the ebuild for api consumers + # that are using binary packages + mysettings.features.discard("noauto") mf = None if "strict" in features and \ "digest" not in features and \