Remove unnecessary and time consuming normpath call for bug #90444.
authorZac Medico <zmedico@gentoo.org>
Mon, 15 May 2006 02:27:59 +0000 (02:27 -0000)
committerZac Medico <zmedico@gentoo.org>
Mon, 15 May 2006 02:27:59 +0000 (02:27 -0000)
svn path=/main/trunk/; revision=3355

pym/portage.py

index 080071d6c5590f46b9faa548b7b13bc5ecc3ee52..7968af215850879b420a7fee19cf0abc8ffe0a36 100644 (file)
@@ -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]]