From a35f9bda1343792fad66a1b9ddfb566cb795af41 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Thu, 20 Aug 2015 19:21:21 -0500 Subject: [PATCH] dev-lang/go: fix go dist line options in test phase Change --no-rebuild to -no-rebuild and drop --banner in the test phase to match the documentation of go dist. Gentoo-Commit: fb870ae6f45993ea375d8d5381edb72ade271b06 --- .../src/third_party/coreos-overlay/dev-lang/go/go-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/dev-lang/go/go-9999.ebuild b/sdk_container/src/third_party/coreos-overlay/dev-lang/go/go-9999.ebuild index e69a483899..691efef069 100644 --- a/sdk_container/src/third_party/coreos-overlay/dev-lang/go/go-9999.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/dev-lang/go/go-9999.ebuild @@ -143,7 +143,7 @@ src_test() cd src PATH="${GOBIN}:${PATH}" \ - ./run.bash --no-rebuild --banner || die "tests failed" + ./run.bash -no-rebuild || die "tests failed" } src_install()