summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-04-26 19:43:25 +0000
committerZac Medico <zmedico@gentoo.org>2007-04-26 19:43:25 +0000
commit114fbb292081686f1287083e8fedf7d519271d1f (patch)
treec1928629e8334a98c5e2ea9302b7f0730dbe387e /pym
parent35681a6e3a208bb33970ecb7a484fb9d3767b468 (diff)
downloadportage-114fbb292081686f1287083e8fedf7d519271d1f.tar.gz
portage-114fbb292081686f1287083e8fedf7d519271d1f.tar.bz2
portage-114fbb292081686f1287083e8fedf7d519271d1f.zip
For bug #176139, only symlink the distfiles that are required according the current USE settings.
svn path=/main/trunk/; revision=6438
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index b9af08eb3..9b00612ab 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -3735,7 +3735,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0,
os.mkdir(edpath)
apply_secpass_permissions(edpath, uid=portage_uid, mode=0755)
try:
- for file in aalist:
+ for file in alist:
os.symlink(os.path.join(orig_distdir, file),
os.path.join(edpath, file))
except OSError: