Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: catalyst/base/
Date: Fri, 29 Jan 2021 23:50:55
Message-Id: 1611799605.30c40a1572e7c95c39c0367d1ed0fbc08c7adc87.mattst88@gentoo
1 commit: 30c40a1572e7c95c39c0367d1ed0fbc08c7adc87
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 28 02:04:26 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 28 02:06:45 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=30c40a15
7
8 catalyst: Fix copy-and-paste mistake
9
10 Fixes: 87b0588a ("catalyst: Add option to enter the chroot before building")
11 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
12
13 catalyst/base/stagebase.py | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
17 index 676206ff..25efd4b3 100644
18 --- a/catalyst/base/stagebase.py
19 +++ b/catalyst/base/stagebase.py
20 @@ -95,7 +95,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
21 self.chroot_setup,
22 self.setup_environment,
23 ]
24 - if 'enter-chroot' in self.settings['options']:
25 + if 'enter-chroot' in myspec['options']:
26 self.build_sequence.append(self.enter_chroot)
27
28 self.finish_sequence = []