From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1016814-garchives=archives.gentoo.org@lists.gentoo.org>
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 7BD4B1382C5
	for <garchives@archives.gentoo.org>; Wed, 11 Apr 2018 20:55:14 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 8B417E09A7;
	Wed, 11 Apr 2018 20:55:13 +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 675ACE09A7
	for <gentoo-commits@lists.gentoo.org>; Wed, 11 Apr 2018 20:55:12 +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 29CDA335C0C
	for <gentoo-commits@lists.gentoo.org>; Wed, 11 Apr 2018 20:55:11 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 177E0230
	for <gentoo-commits@lists.gentoo.org>; Wed, 11 Apr 2018 20:55:09 +0000 (UTC)
From: "Sergei Trofimovich" <slyfox@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" <slyfox@gentoo.org>
Message-ID: <1523480104.a504322f9e2def94413f2501729f0987bac44e9b.slyfox@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/arch/powerpc/ppc64/64le/
X-VCS-Repository: repo/gentoo
X-VCS-Files: profiles/arch/powerpc/ppc64/64le/make.defaults
X-VCS-Directories: profiles/arch/powerpc/ppc64/64le/
X-VCS-Committer: slyfox
X-VCS-Committer-Name: Sergei Trofimovich
X-VCS-Revision: a504322f9e2def94413f2501729f0987bac44e9b
X-VCS-Branch: master
Date: Wed, 11 Apr 2018 20:55:09 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: d2f7d71c-08b0-40de-beae-ecb9f0d6d6e6
X-Archives-Hash: 49ade160691fdd4b9a9d3cce0ed47fe8

commit:     a504322f9e2def94413f2501729f0987bac44e9b
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 11 20:38:50 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Apr 11 20:55:04 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a504322f

profiles/arch/powerpc/ppc64/64le/make.defaults: fix CHOST_ variables

Before the change:
    CHOST="powerpc64le-unknown-linux-gnu"
    CHOST_ppc64="powerpc64-unknown-linux-gnu"
    CHOST_ppc="powerpc-unknown-linux-gnu"

After the change:
    CHOST="powerpc64le-unknown-linux-gnu"
    CHOST_ppc64="powerpc64le-unknown-linux-gnu"
    CHOST_ppc="powerpcle-unknown-linux-gnu"

Reported-by: luke-jr
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 profiles/arch/powerpc/ppc64/64le/make.defaults | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/profiles/arch/powerpc/ppc64/64le/make.defaults b/profiles/arch/powerpc/ppc64/64le/make.defaults
index f02939cf2c6..7a7e3bdc53a 100644
--- a/profiles/arch/powerpc/ppc64/64le/make.defaults
+++ b/profiles/arch/powerpc/ppc64/64le/make.defaults
@@ -6,3 +6,6 @@ CFLAGS="-O2 -pipe"
 CXXFLAGS="${CFLAGS}"
 FFLAGS="${CFLAGS}"
 FCFLAGS="${CFLAGS}"
+
+CHOST_ppc64="powerpc64le-unknown-linux-gnu"
+CHOST_ppc="powerpcle-unknown-linux-gnu"