From: William Hubbs Date: Thu, 27 Aug 2015 14:53:35 +0000 (-0500) Subject: dev-go/go-tools: fix removal of cover and vet X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6c14be6fab464d3fbb38560a018a42b9c4f13f9c;p=gentoo.git dev-go/go-tools: fix removal of cover and vet Since binaries are being installed in $GOROOT/bin, we need to remove cover and vet from there for newer versions of go instead of from removing them from /usr/bin. This fixes bug #558882. --- diff --git a/dev-go/go-tools/go-tools-0_pre20150823-r1.ebuild b/dev-go/go-tools/go-tools-0_pre20150823-r1.ebuild index 887effab69f0..030ff9e2a489 100644 --- a/dev-go/go-tools/go-tools-0_pre20150823-r1.ebuild +++ b/dev-go/go-tools/go-tools-0_pre20150823-r1.ebuild @@ -94,7 +94,7 @@ src_install() { doexe "${T}/goroot/pkg/tool/$(go env GOOS)_$(go env GOARCH)/cover" doexe "${T}/goroot/pkg/tool/$(go env GOOS)_$(go env GOARCH)/vet" else - rm "${D}"/usr/bin/{cover,vet} || + rm "${D}"$(go env GOROOT)/bin/{cover,vet} || die "unable to remove cover and vet" fi }