From: Brian Harring Date: Thu, 5 Jan 2006 07:09:38 +0000 (-0000) Subject: force a realpath call for complaints about digest files; better resolution is resetti... X-Git-Tag: v2.1_pre4~57 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8335c51cad543c552b40734db19cfbfb98454ac6;p=portage.git force a realpath call for complaints about digest files; better resolution is resetting DISTDIR post doebuild (see, we really need to break the beast up or decorate it), but this resolves 117264 in the meantime. svn path=/main/trunk/; revision=2529 --- diff --git a/pym/portage.py b/pym/portage.py index 6105e0810..155d07968 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -2291,7 +2291,7 @@ def digestCheckFiles(myfiles, mydigests, basedir, note="", strict=0): if not ok: print print red("!!! Digest verification Failed:") - print red("!!!")+" "+str(myfile) + print red("!!!")+" "+str(os.path.realpath(myfile)) print red("!!! Reason: ")+reason[0] print red("!!! Got: ")+str(reason[1]) print red("!!! Expected: ")+str(reason[2])