From 458837af03fe6f19e49b1e12aa6b53c82b1b288c Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 6 Aug 2009 07:00:36 +0000 Subject: Fix broken os.walk call in _post_src_install_uid_fix(). svn path=/main/trunk/; revision=13929 --- pym/portage/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index a959207c4..e2f459fc4 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -5169,7 +5169,7 @@ def _post_src_install_uid_fix(mysettings): # os.path.join when called by os.walk. destdir = destdir.encode('utf_8', 'replace') - for parent, dirs, files in os.walk(mysettings["D"]): + for parent, dirs, files in os.walk(destdir): for fname in chain(dirs, files): fpath = os.path.join(parent, fname) mystat = os.lstat(fpath) -- cgit v1.2.3-1-g7c22