Skip to content

Commit

Permalink
dev-lang/go: fix go-1.5 build on arm
Browse files Browse the repository at this point in the history
This is for bug #558742. Thanks to Stefan Junker for the report.
  • Loading branch information
williamh committed Sep 4, 2015
1 parent c774f37 commit c1f3240
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev-lang/go/go-1.5.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -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}}"
;;
Expand Down

0 comments on commit c1f3240

Please sign in to comment.