diff -ur portage-2.1_pre2.orig/pym/portage.py portage-2.1_pre2/pym/portage.py --- portage-2.1_pre2.orig/pym/portage.py 2005-12-26 06:36:38.000000000 +0000 +++ portage-2.1_pre2/pym/portage.py 2005-12-26 06:36:45.000000000 +0000 @@ -6918,6 +6918,9 @@ archlist=[] for myarch in grabfile(settings["PORTDIR"]+"/profiles/arch.list"): archlist += [myarch,"~"+myarch] +for myover in settings["PORTDIR_OVERLAY"].split(): + for myarch in grabfile(myover+"/profiles/arch.list"): + archlist += [myarch,"~"+myarch] for group in groups: if not archlist: writemsg("--- 'profiles/arch.list' is empty or not available. Empty portage tree?\n") Somente em portage-2.1_pre2/pym: portage.py.orig