From: Zac Medico Date: Sun, 8 Jun 2008 05:11:39 +0000 (-0000) Subject: Bug #225285 - Allow digestcheck() to succeed when the Manifest is missing X-Git-Tag: v2.2_pre8~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d15e561fcc241b4a26a56b08c43594cae0c7e849;p=portage.git Bug #225285 - Allow digestcheck() to succeed when the Manifest is missing and strict mode is disabled. svn path=/main/trunk/; revision=10604 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 55a5399c9..7f8d96f22 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -4042,6 +4042,8 @@ def digestcheck(myfiles, mysettings, strict=0, justmanifest=0): noiselevel=-1) if strict: return 0 + else: + return 1 mf = Manifest(pkgdir, mysettings["DISTDIR"]) eout = portage.output.EOutput() eout.quiet = mysettings.get("PORTAGE_QUIET", None) == "1"