[matter] make sure to not account the same atom twice on the compiled list

This commit is contained in:
Fabio Erculiani
2012-01-15 11:28:35 +01:00
parent 67a2d34af7
commit 309ce12db9

View File

@@ -1354,7 +1354,8 @@ def matter_main(entropy_server, nsargs, cwd, specs):
# completely abort
break
completed.extend(local_completed)
completed.extend([x for x in local_completed \
if x not in completed])
# portage calls setcwd()
os.chdir(cwd)