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 5814F138350 for ; Tue, 5 May 2020 05:20:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98519E086D; Tue, 5 May 2020 05:20:51 +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 7B75DE086D for ; Tue, 5 May 2020 05:20:51 +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 EB46534F621 for ; Tue, 5 May 2020 05:20:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E030B2B for ; Tue, 5 May 2020 05:20:47 +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: <1588656015.7e392bb6998dfb726f72b3c7bddcedbce685261c.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master 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: 7e392bb6998dfb726f72b3c7bddcedbce685261c X-VCS-Branch: master Date: Tue, 5 May 2020 05:20:47 +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: 0ab3c957-06d3-4fa8-b8f1-1d02437375b4 X-Archives-Hash: 069179dccd2a5e61ea06cb81ba32029a commit: 7e392bb6998dfb726f72b3c7bddcedbce685261c Author: Matt Turner gentoo org> AuthorDate: Tue May 5 05:20:15 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue May 5 05:20:15 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=7e392bb6 catalyst: Remove never-used "crosscompile" Signed-off-by: Matt Turner gentoo.org> catalyst/base/stagebase.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 80cc16f2..951500d8 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -111,15 +111,9 @@ class StageBase(TargetBase, ClearBase, GenBase): chroot = 'chroot' self.settings["CHROOT"] = chroot - self.settings["crosscompile"] = \ - build != host and not chroot.startswith('setarch') - log.notice('Using target: %s', self.settings['target']) # Print a nice informational message - if self.settings["crosscompile"]: - log.info('Cross-compiling on %s for different machine type %s', - build, host) - elif chroot.startswith('setarch'): + if chroot.startswith('setarch'): log.info('Building on %s for alternate personality type %s', build, host) else: