From: Zac Medico Date: Thu, 28 Apr 2016 15:42:25 +0000 (-0700) Subject: dev-lang/go: fix gccgo support to use gcc-config --get-bin-path (bug 579958) X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=665cebe34f6e452bd138bc6749804e6ffc1cc865;p=gentoo.git dev-lang/go: fix gccgo support to use gcc-config --get-bin-path (bug 579958) Package-Manager: portage-2.2.28 --- diff --git a/dev-lang/go/go-1.6.2.ebuild b/dev-lang/go/go-1.6.2.ebuild index 07d84b0ecdf0..88dace64fdc2 100644 --- a/dev-lang/go/go-1.6.2.ebuild +++ b/dev-lang/go/go-1.6.2.ebuild @@ -155,7 +155,7 @@ src_compile() export GOROOT_BOOTSTRAP="${WORKDIR}"/go-$(go_os)-$(go_arch)-bootstrap if use gccgo; then mkdir -p "${GOROOT_BOOTSTRAP}/bin" || die - local go_binary=$(type -P go-5 2>/dev/null) + local go_binary=$(gcc-config --get-bin-path)/go-5 [[ -x ${go_binary} ]] || go_binary=$( find "${EPREFIX}"/usr/${CHOST}/gcc-bin/*/go-5 | sort -V | tail -n1) [[ -x ${go_binary} ]] || die "go-5: command not found"