From: Zac Medico Date: Mon, 9 Jun 2008 15:13:35 +0000 (-0000) Subject: Bug #225285 - Allow digestcheck() to succeed when the Manifest is missing X-Git-Tag: v2.1.5.5~13 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d305817723fb8e08734c66e53aa28bff6e22e528;p=portage.git Bug #225285 - Allow digestcheck() to succeed when the Manifest is missing and strict mode is disabled. (trunk r10604) svn path=/main/branches/2.1.2/; revision=10619 --- diff --git a/pym/portage.py b/pym/portage.py index 1454c520d..2a5f29257 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -4052,6 +4052,8 @@ def digestcheck(myfiles, mysettings, strict=0, justmanifest=0): noiselevel=-1) if strict: return 0 + else: + return 1 mf = Manifest(pkgdir, mysettings["DISTDIR"]) eout = output.EOutput() eout.quiet = mysettings.get("PORTAGE_QUIET", None) == "1"