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 B9EF413877A for ; Tue, 2 Sep 2014 02:33:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21695E0BB0; Tue, 2 Sep 2014 02:33:08 +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 A825EE0BB0 for ; Tue, 2 Sep 2014 02:33:07 +0000 (UTC) Received: from big_daddy.dol-sen.ca (S010600222de111ff.vc.shawcable.net [96.49.5.156]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: dolsen) by smtp.gentoo.org (Postfix) with ESMTPSA id 725CF33F8BC; Tue, 2 Sep 2014 02:33:06 +0000 (UTC) From: Brian Dolbec To: catalyst@gentoo.org, gentoo-catalyst@lists.gentoo.org Subject: [gentoo-catalyst] [PATCH 5/7] chroot-functions.sh: Fix a mis-worded comment Date: Mon, 1 Sep 2014 19:31:39 -0700 Message-Id: <1409625101-27112-6-git-send-email-dolsen@gentoo.org> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1409625101-27112-1-git-send-email-dolsen@gentoo.org> References: <1409625101-27112-1-git-send-email-dolsen@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------1.9.3" X-Archives-Salt: 097d45bb-7055-4e93-9a61-1a30a14c9076 X-Archives-Hash: 08d7895f2af2c813cc2c5bfe958ab388 This is a multi-part message in MIME format. --------------1.9.3 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: 8bit Fixes: 900554b0b067e76d3806e520357d91adbfa4fa0c Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) (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(-) --------------1.9.3 Content-Type: text/x-patch; name="0005-chroot-functions.sh-Fix-a-mis-worded-comment.patch" Content-Transfer-Encoding: 8bit Content-Disposition: inline; filename="0005-chroot-functions.sh-Fix-a-mis-worded-comment.patch" diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh index ce56157..3495f14 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 will 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 --------------1.9.3--