diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-11-07 08:19:21 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-11-07 08:19:21 +0000 |
commit | ffd60aca5695ab851f2d75b16e385d948109bc25 (patch) | |
tree | 955eac8d49d47afc3ac286fc5319a3803c6e1ca3 | |
parent | e080043cdbadd2d386baf72f6543ca8d4856227d (diff) | |
download | portage-ffd60aca5695ab851f2d75b16e385d948109bc25.tar.gz portage-ffd60aca5695ab851f2d75b16e385d948109bc25.tar.bz2 portage-ffd60aca5695ab851f2d75b16e385d948109bc25.zip |
Really fix broken logic for --update greedy slot atoms in
depgraph.select_files().
svn path=/main/trunk/; revision=8453
-rw-r--r-- | pym/_emerge/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 7cf132cd4..e3cad61ce 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -1825,9 +1825,9 @@ class depgraph(object): # atoms could be a property of the set itself. greedy_atoms = [] for myarg, atom in arg_atoms: + greedy_atoms.append((myarg, atom)) if myarg.startswith(SETPREFIX): continue - greedy_atoms.append((myarg, atom)) for greedy_atom in self._greedy_slot_atoms(myroot, atom): greedy_atoms.append((myarg, greedy_atom)) arg_atoms = greedy_atoms |