From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qe6Hw-0001hq-5Z for garchives@archives.gentoo.org; Tue, 05 Jul 2011 14:07:44 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F17121C0D7; Tue, 5 Jul 2011 14:07:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E2AE521C0D7 for ; Tue, 5 Jul 2011 14:07:35 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 70FB11B4011 for ; Tue, 5 Jul 2011 14:07:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 8E7D98003D for ; Tue, 5 Jul 2011 14:07:34 +0000 (UTC) From: "Wiktor W Brodlo" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Wiktor W Brodlo" Message-ID: <74726ef5376ed416b2804057c596eeaba51af2cf.wiktor@gentoo> Subject: [gentoo-commits] proj/anaconda:master commit in: gentoo/ X-VCS-Repository: proj/anaconda X-VCS-Files: gentoo/utils.py X-VCS-Directories: gentoo/ X-VCS-Committer: wiktor X-VCS-Committer-Name: Wiktor W Brodlo X-VCS-Revision: 74726ef5376ed416b2804057c596eeaba51af2cf Date: Tue, 5 Jul 2011 14:07:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 82defbf35b27a4252ae1e943e1ca0b2c commit: 74726ef5376ed416b2804057c596eeaba51af2cf Author: wiktor w brodlo brodlo net> AuthorDate: Tue Jul 5 14:07:10 2011 +0000 Commit: Wiktor W Brodlo brodlo net> CommitDate: Tue Jul 5 14:07:10 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/anaconda.git;= a=3Dcommit;h=3D74726ef5 gentoo/utils.py: fix copying additional tools to portage --- gentoo/utils.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/gentoo/utils.py b/gentoo/utils.py index 56ee310..dc400c1 100644 --- a/gentoo/utils.py +++ b/gentoo/utils.py @@ -1057,7 +1057,8 @@ class GentooInstall: subprocess.call(["cp", "--recursive", "/usr/portage", self._root= +"/usr/"]) # We need some packages from anaconda-overlay but ideally they s= hould be added to portage self._progress.set_fraction(0.5) - subprocess.call(["cp", "--recursive", "/anaconda-overlay/*", sel= f._root+"/usr/portage/"]) + subprocess.call(["cp", "--recursive", "/anaconda-overlay/app-adm= in", self._root+"/usr/portage/"]) + subprocess.call(["cp", "--recursive", "/anaconda-overlay/sys-app= s", self._root+"/usr/portage/"]) self._progress.set_fraction(1) =20 def install_setup_tools(self):