summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorBrian Harring <ferringb@gentoo.org>2006-01-05 07:09:38 +0000
committerBrian Harring <ferringb@gentoo.org>2006-01-05 07:09:38 +0000
commit8335c51cad543c552b40734db19cfbfb98454ac6 (patch)
tree2b2c97c505a9e01012d40775d35f53f233d93d8c /pym
parentb914e83041ec8f57f24ea199a7b8caf07cd5111f (diff)
downloadportage-8335c51cad543c552b40734db19cfbfb98454ac6.tar.gz
portage-8335c51cad543c552b40734db19cfbfb98454ac6.tar.bz2
portage-8335c51cad543c552b40734db19cfbfb98454ac6.zip
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
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
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])