From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 022F2138206 for ; Sun, 1 May 2016 00:21:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19540E087F; Sun, 1 May 2016 00:21:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ADF6CE087F for ; Sun, 1 May 2016 00:21:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 51E78340CFA for ; Sun, 1 May 2016 00:21:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15A13331 for ; Sun, 1 May 2016 00:21:34 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1462062063.42b832b6b2e5aab8cfd0c66a3bdeb4c5da96c987.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/go/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/go/go-1.6.2.ebuild dev-lang/go/go-9999.ebuild X-VCS-Directories: dev-lang/go/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 42b832b6b2e5aab8cfd0c66a3bdeb4c5da96c987 X-VCS-Branch: master Date: Sun, 1 May 2016 00:21:34 +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-Archives-Salt: 98215b44-557e-4d23-9d59-bc2cc5dac8bd X-Archives-Hash: e35ae48d121a1d424957264b78d0ef08 commit: 42b832b6b2e5aab8cfd0c66a3bdeb4c5da96c987 Author: William Hubbs gentoo org> AuthorDate: Sun May 1 00:19:22 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun May 1 00:21:03 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42b832b6 dev-lang/go: style fix Package-Manager: portage-2.2.26 dev-lang/go/go-1.6.2.ebuild | 3 +-- dev-lang/go/go-9999.ebuild | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/dev-lang/go/go-1.6.2.ebuild b/dev-lang/go/go-1.6.2.ebuild index 88dace6..9a52b39 100644 --- a/dev-lang/go/go-1.6.2.ebuild +++ b/dev-lang/go/go-1.6.2.ebuild @@ -88,8 +88,7 @@ go_arch() case "${portage_arch}" in x86) echo 386;; x64-*) echo amd64;; - ppc64) - [[ "$(tc-endian)" = big ]] && echo ppc64 || echo ppc64le ;; + ppc64) [[ $(tc-endian $@) = big ]] && echo ppc64 || echo ppc64le ;; *) echo "${portage_arch}";; esac } diff --git a/dev-lang/go/go-9999.ebuild b/dev-lang/go/go-9999.ebuild index 88dace6..9a52b39 100644 --- a/dev-lang/go/go-9999.ebuild +++ b/dev-lang/go/go-9999.ebuild @@ -88,8 +88,7 @@ go_arch() case "${portage_arch}" in x86) echo 386;; x64-*) echo amd64;; - ppc64) - [[ "$(tc-endian)" = big ]] && echo ppc64 || echo ppc64le ;; + ppc64) [[ $(tc-endian $@) = big ]] && echo ppc64 || echo ppc64le ;; *) echo "${portage_arch}";; esac }