From: Zac Medico Date: Tue, 16 Apr 2013 19:26:02 +0000 (-0700) Subject: bin/ebuild: tweak FEATURES=digest logic X-Git-Tag: v2.2.0_alpha174~20 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=238302521adfe222c037f690f20c4cd245a1b4f4;p=portage.git bin/ebuild: tweak FEATURES=digest logic --- diff --git a/bin/ebuild b/bin/ebuild index aa7c18aaa..55386005f 100755 --- a/bin/ebuild +++ b/bin/ebuild @@ -311,9 +311,9 @@ def stale_env_warning(): from portage.exception import PermissionDenied, \ PortagePackageException, UnsupportedAPIException -if 'digest' in tmpsettings.features and \ - pargs and pargs[0] not in ("digest", "manifest"): - pargs = ['digest'] + pargs +if 'digest' in tmpsettings.features: + if pargs and pargs[0] not in ("digest", "manifest"): + pargs = ['digest'] + pargs # We only need to build digests on the first pass. tmpsettings.features.discard('digest')