From: Zac Medico Date: Wed, 10 Dec 2008 06:53:42 +0000 (-0000) Subject: Verify binary packages even when not in "strict" mode (normal distfiles are X-Git-Tag: v2.2_rc18~29 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=29e343606dc7ad72248d7d636dc7c872e01860fa;p=portage.git Verify binary packages even when not in "strict" mode (normal distfiles are also verified in this case). svn path=/main/trunk/; revision=12195 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 49a817955..720b908d2 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -3132,8 +3132,7 @@ class Binpkg(CompositeTask): settings.setcpv(pkg) self._tree = "bintree" self._bintree = self.pkg.root_config.trees[self._tree] - self._verify = "strict" in self.settings.features and \ - not self.opts.pretend + self._verify = not self.opts.pretend dir_path = os.path.join(settings["PORTAGE_TMPDIR"], "portage", pkg.category, pkg.pf)