Gentoo Archives: gentoo-commits

From: Wiktor W Brodlo <wiktor@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/anaconda:master commit in: gentoo/
Date: Tue, 05 Jul 2011 14:07:44
Message-Id: 74726ef5376ed416b2804057c596eeaba51af2cf.wiktor@gentoo
1 commit: 74726ef5376ed416b2804057c596eeaba51af2cf
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Tue Jul 5 14:07:10 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Tue Jul 5 14:07:10 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=74726ef5
7
8 gentoo/utils.py: fix copying additional tools to portage
9
10 ---
11 gentoo/utils.py | 3 ++-
12 1 files changed, 2 insertions(+), 1 deletions(-)
13
14 diff --git a/gentoo/utils.py b/gentoo/utils.py
15 index 56ee310..dc400c1 100644
16 --- a/gentoo/utils.py
17 +++ b/gentoo/utils.py
18 @@ -1057,7 +1057,8 @@ class GentooInstall:
19 subprocess.call(["cp", "--recursive", "/usr/portage", self._root+"/usr/"])
20 # We need some packages from anaconda-overlay but ideally they should be added to portage
21 self._progress.set_fraction(0.5)
22 - subprocess.call(["cp", "--recursive", "/anaconda-overlay/*", self._root+"/usr/portage/"])
23 + subprocess.call(["cp", "--recursive", "/anaconda-overlay/app-admin", self._root+"/usr/portage/"])
24 + subprocess.call(["cp", "--recursive", "/anaconda-overlay/sys-apps", self._root+"/usr/portage/"])
25 self._progress.set_fraction(1)
26
27 def install_setup_tools(self):