From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 56D75138E74 for ; Thu, 11 Sep 2014 03:26:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCA4FE09D4; Thu, 11 Sep 2014 03:26:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BC918E09D7 for ; Thu, 11 Sep 2014 03:26:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A73AD340223 for ; Thu, 11 Sep 2014 03:26:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5DEAE530F for ; Thu, 11 Sep 2014 03:26:40 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1410404514.b0377343dd8d6f90850bb200f71e18ad13440308.dol-sen@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/chroot-functions.sh X-VCS-Directories: targets/support/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: b0377343dd8d6f90850bb200f71e18ad13440308 X-VCS-Branch: master Date: Thu, 11 Sep 2014 03:26:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b0153811-eea5-4497-b450-4650f6943ca1 X-Archives-Hash: da08be48dd5a78c0e4555a381a0144cd Message-ID: <20140911032640.ZXd6CkQwfP41CcpSdf0BmwvN4G7Lz5meCiYtXdZKSsc@z> commit: b0377343dd8d6f90850bb200f71e18ad13440308 Author: Brian Dolbec gentoo org> AuthorDate: Mon Sep 1 19:32:22 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Thu Sep 11 03:01:54 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=b0377343 chroot-functions.sh: Fix a mis-worded comment Fixes: 900554b0b067e76d3806e520357d91adbfa4fa0c Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) gentoo.org> (Mon 19 Dec 2011 11:14:05 PM PST) subject: Make sure portage updates itself at the start of stage1 - thanks to Zac for noticing the issue. --- targets/support/chroot-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh index ce56157..a31e8bf 100755 --- a/targets/support/chroot-functions.sh +++ b/targets/support/chroot-functions.sh @@ -169,7 +169,7 @@ setup_pkgmgr(){ # We need to merge our package manager with USE="build" set in case it is # portage to avoid frying our /etc/portage/make.conf file. Otherwise, we could # just let emerge @system could merge it. - # Use --update or portage won't reinstall the same version. + # Use --update or portage might just waste time/cycles and reinstall the same version. [ -e /etc/portage/make.conf ] && echo 'USE="${USE} build"' >> /etc/portage/make.conf run_merge --oneshot --update sys-apps/portage sed -i '/USE="${USE} build"/d' /etc/portage/make.conf