From 6c14be6fab464d3fbb38560a018a42b9c4f13f9c Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Thu, 27 Aug 2015 09:53:35 -0500 Subject: [PATCH] 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. --- dev-go/go-tools/go-tools-0_pre20150823-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.26.2