From 238302521adfe222c037f690f20c4cd245a1b4f4 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 16 Apr 2013 12:26:02 -0700 Subject: [PATCH] bin/ebuild: tweak FEATURES=digest logic --- bin/ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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') -- 2.26.2