Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/
Date: Tue, 05 May 2020 05:20:52
Message-Id: 1588656015.7e392bb6998dfb726f72b3c7bddcedbce685261c.mattst88@gentoo
1 commit: 7e392bb6998dfb726f72b3c7bddcedbce685261c
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 5 05:20:15 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue May 5 05:20:15 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=7e392bb6
7
8 catalyst: Remove never-used "crosscompile"
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 catalyst/base/stagebase.py | 8 +-------
13 1 file changed, 1 insertion(+), 7 deletions(-)
14
15 diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
16 index 80cc16f2..951500d8 100644
17 --- a/catalyst/base/stagebase.py
18 +++ b/catalyst/base/stagebase.py
19 @@ -111,15 +111,9 @@ class StageBase(TargetBase, ClearBase, GenBase):
20 chroot = 'chroot'
21 self.settings["CHROOT"] = chroot
22
23 - self.settings["crosscompile"] = \
24 - build != host and not chroot.startswith('setarch')
25 -
26 log.notice('Using target: %s', self.settings['target'])
27 # Print a nice informational message
28 - if self.settings["crosscompile"]:
29 - log.info('Cross-compiling on %s for different machine type %s',
30 - build, host)
31 - elif chroot.startswith('setarch'):
32 + if chroot.startswith('setarch'):
33 log.info('Building on %s for alternate personality type %s',
34 build, host)
35 else: