summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-04-26 19:43:56 +0000
committerZac Medico <zmedico@gentoo.org>2007-04-26 19:43:56 +0000
commit4a26f2dd6d71372ecf0b36611c877fa6ee217e3c (patch)
treec52107a3521e180f76be77fcc1e548bdf74abfb2 /pym
parent9fd1b8775135485566749b78f24dfac2c26119ea (diff)
downloadportage-4a26f2dd6d71372ecf0b36611c877fa6ee217e3c.tar.gz
portage-4a26f2dd6d71372ecf0b36611c877fa6ee217e3c.tar.bz2
portage-4a26f2dd6d71372ecf0b36611c877fa6ee217e3c.zip
For bug #176139, only symlink the distfiles that are required according the current USE settings. (trunk r6437:6438)
svn path=/main/branches/2.1.2/; revision=6439
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index ab5e984c1..fda216bed 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -3668,7 +3668,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: