From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 106A31382C5 for ; Fri, 29 Jan 2021 23:50:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A04B7E0ABA; Fri, 29 Jan 2021 23:50:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 85A52E0ABA for ; Fri, 29 Jan 2021 23:50:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7EE14340FF9 for ; Fri, 29 Jan 2021 23:50:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B32E84B0 for ; Fri, 29 Jan 2021 23:50:49 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1611799605.30c40a1572e7c95c39c0367d1ed0fbc08c7adc87.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 30c40a1572e7c95c39c0367d1ed0fbc08c7adc87 X-VCS-Branch: wip/mattst88 Date: Fri, 29 Jan 2021 23:50:49 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1821d3b6-ef20-43e7-b5cd-ff9b77be0711 X-Archives-Hash: 3573b4924f446cc9a3bd43eae2ec9e5f Message-ID: <20210129235049.hIO2sY2suavLYDbqwOMRhbYE2Yi3lJXKPk9Y5cpQkFQ@z> commit: 30c40a1572e7c95c39c0367d1ed0fbc08c7adc87 Author: Matt Turner gentoo org> AuthorDate: Thu Jan 28 02:04:26 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Jan 28 02:06:45 2021 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=30c40a15 catalyst: Fix copy-and-paste mistake Fixes: 87b0588a ("catalyst: Add option to enter the chroot before building") Signed-off-by: Matt Turner gentoo.org> catalyst/base/stagebase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 676206ff..25efd4b3 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -95,7 +95,7 @@ class StageBase(TargetBase, ClearBase, GenBase): self.chroot_setup, self.setup_environment, ] - if 'enter-chroot' in self.settings['options']: + if 'enter-chroot' in myspec['options']: self.build_sequence.append(self.enter_chroot) self.finish_sequence = []