From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8E58C1397EF for ; Fri, 21 Aug 2015 00:38:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36DF8141EC; Fri, 21 Aug 2015 00:38:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C4BB6141EC for ; Fri, 21 Aug 2015 00:38:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1DDED3406CE for ; Fri, 21 Aug 2015 00:38:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70F0015A for ; Fri, 21 Aug 2015 00:38:02 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1440117220.fb870ae6f45993ea375d8d5381edb72ade271b06.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/go/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/go/go-9999.ebuild X-VCS-Directories: dev-lang/go/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: fb870ae6f45993ea375d8d5381edb72ade271b06 X-VCS-Branch: master Date: Fri, 21 Aug 2015 00:38:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c0fceff4-2ad9-4765-ad45-3a94d599c019 X-Archives-Hash: 6f48c0c4aaa7e39829fa0221c8f3effb commit: fb870ae6f45993ea375d8d5381edb72ade271b06 Author: William Hubbs gentoo org> AuthorDate: Fri Aug 21 00:21:21 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Aug 21 00:33:40 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb870ae6 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. dev-lang/go/go-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-lang/go/go-9999.ebuild b/dev-lang/go/go-9999.ebuild index e69a483..691efef 100644 --- a/dev-lang/go/go-9999.ebuild +++ b/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()