* [gentoo-commits] portage r10456 - main/branches/2.1.2/bin
@ 2008-05-27 10:20 Zac Medico (zmedico)
0 siblings, 0 replies; only message in thread
From: Zac Medico (zmedico) @ 2008-05-27 10:20 UTC (permalink / raw
To: gentoo-commits
Author: zmedico
Date: 2008-05-27 10:20:38 +0000 (Tue, 27 May 2008)
New Revision: 10456
Modified:
main/branches/2.1.2/bin/emerge
Log:
Fix breakage due to frozenset being immutable. (trunk r10455)
Modified: main/branches/2.1.2/bin/emerge
===================================================================
--- main/branches/2.1.2/bin/emerge 2008-05-27 10:20:20 UTC (rev 10455)
+++ main/branches/2.1.2/bin/emerge 2008-05-27 10:20:38 UTC (rev 10456)
@@ -2226,8 +2226,8 @@
"""Return a set of flags that trigger reinstallation, or None if there
are no such flags."""
if "--newuse" in self.myopts:
- flags = orig_iuse.symmetric_difference(
- cur_iuse).difference(forced_flags)
+ flags = set(orig_iuse.symmetric_difference(
+ cur_iuse).difference(forced_flags))
flags.update(orig_iuse.intersection(orig_use).symmetric_difference(
cur_iuse.intersection(cur_use)))
if flags:
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-05-27 10:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-27 10:20 [gentoo-commits] portage r10456 - main/branches/2.1.2/bin Zac Medico (zmedico)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox