summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-05-15 02:27:59 +0000
committerZac Medico <zmedico@gentoo.org>2006-05-15 02:27:59 +0000
commit208a6ded233a833e12c056c7b7f6aec18a66769c (patch)
treefa5cb00c5225dc1cfab793fff18a39846d167c1c
parent469f4998f728cca0847ceb712b423e653f5eff78 (diff)
downloadportage-208a6ded233a833e12c056c7b7f6aec18a66769c.tar.gz
portage-208a6ded233a833e12c056c7b7f6aec18a66769c.tar.bz2
portage-208a6ded233a833e12c056c7b7f6aec18a66769c.zip
Remove unnecessary and time consuming normpath call for bug #90444.
svn path=/main/trunk/; revision=3355
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 080071d6c..7968af215 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -5670,7 +5670,7 @@ class dblink:
# we do this so we can remove from non-root filesystems
# (use the ROOT var to allow maintenance on other partitions)
try:
- mydat[1]=os.path.normpath(self.myroot+mydat[1][1:])
+ mydat[1] = self.myroot + mydat[1][1:]
if mydat[0]=="obj":
#format: type, mtime, md5sum
pkgfiles[string.join(mydat[1:-2]," ")]=[mydat[0], mydat[-1], mydat[-2]]