Gentoo Archives: gentoo-commits

From: Wiktor W Brodlo <wiktor@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/anaconda:master commit in: iw/
Date: Tue, 05 Jul 2011 12:36:59
Message-Id: e5cdeb7d7ee10d56f640e3450c64112d8a001027.wiktor@gentoo
1 commit: e5cdeb7d7ee10d56f640e3450c64112d8a001027
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Tue Jul 5 12:36:31 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Tue Jul 5 12:36:31 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=e5cdeb7d
7
8 iw/profile_gui.py: Set the selected profile (needed for USE flags)
9
10 ---
11 iw/profile_gui.py | 2 ++
12 1 files changed, 2 insertions(+), 0 deletions(-)
13
14 diff --git a/iw/profile_gui.py b/iw/profile_gui.py
15 index ecc35cd..8b289f8 100644
16 --- a/iw/profile_gui.py
17 +++ b/iw/profile_gui.py
18 @@ -39,6 +39,8 @@ class ProfileWindow(InstallWindow):
19 for button in self.buttons:
20 if button.get_property("active"):
21 self.anaconda.profile = button.get_property("label")
22 + # We need this for the USE flags
23 + subprocess.call(["eselect", "profile", "set", self.anaconda.profile])
24 return None
25
26 def getScreen(self, anaconda):