From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Rl0dR-00057F-Tc for garchives@archives.gentoo.org; Wed, 11 Jan 2012 16:02:48 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BECB21C078; Wed, 11 Jan 2012 16:02:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6A5BB21C078 for ; Wed, 11 Jan 2012 16:02:36 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B7DBC1B401B for ; Wed, 11 Jan 2012 16:02:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 0721580044 for ; Wed, 11 Jan 2012 16:02:35 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <0dd5593f6754f92657c8c7331f66f812d10eeb44.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/dbapi/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/dbapi/vartree.py X-VCS-Directories: pym/portage/dbapi/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 0dd5593f6754f92657c8c7331f66f812d10eeb44 Date: Wed, 11 Jan 2012 16:02:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 7de53206-a444-43dd-9ef8-0a878ed3fcbc X-Archives-Hash: 8e2fd7421abecf80fafad9a2ad833e2c commit: 0dd5593f6754f92657c8c7331f66f812d10eeb44 Author: Zac Medico gentoo org> AuthorDate: Wed Jan 11 16:02:26 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Jan 11 16:02:26 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D0dd5593f quickpkg: add leading ./ to names for bug 398543 --- pym/portage/dbapi/vartree.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index a66316b..af70ec3 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -4629,7 +4629,7 @@ def tar_contents(contents, root, tar, protect=3DNon= e, onProgress=3DNone): continue contents_type =3D contents[path][0] if path.startswith(root): - arcname =3D path[len(root):] + arcname =3D "./" + path[len(root):] else: raise ValueError("invalid root argument: '%s'" % root) live_path =3D path