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 9BA29139B2A for ; Fri, 18 Sep 2015 20:17:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DA4121C0C4; Fri, 18 Sep 2015 20:17:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D72BF21C0C4 for ; Fri, 18 Sep 2015 20:17:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B3665340CD1 for ; Fri, 18 Sep 2015 20:17:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D5BD186 for ; Fri, 18 Sep 2015 20:17:14 +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: <1442607395.994b2e7692e18b6c7f35f00b23713ebf47c5d316.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-9999.ebuild X-VCS-Directories: dev-lang/go/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 994b2e7692e18b6c7f35f00b23713ebf47c5d316 X-VCS-Branch: master Date: Fri, 18 Sep 2015 20:17:14 +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: c1287f04-da9b-4f19-8ab8-37c363a36c86 X-Archives-Hash: 227949f9556572e883219a26ac81b706 commit: 994b2e7692e18b6c7f35f00b23713ebf47c5d316 Author: William Hubbs gentoo org> AuthorDate: Fri Sep 18 20:16:35 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Sep 18 20:16:35 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=994b2e76 dev-lang/go: sync live ebuild dev-lang/go/go-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-lang/go/go-9999.ebuild b/dev-lang/go/go-9999.ebuild index 691efef..6fc180c 100644 --- a/dev-lang/go/go-9999.ebuild +++ b/dev-lang/go/go-9999.ebuild @@ -59,9 +59,9 @@ go_arch() go_arm() { case "${1:-${CHOST}}" in - armv5) echo 5;; - armv6) echo 6;; - armv7) echo 7;; + armv5*) echo 5;; + armv6*) echo 6;; + armv7*) echo 7;; *) die "unknown GOARM for ${1:-${CHOST}}" ;;