From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EE4C2138334 for ; Fri, 30 Nov 2018 23:00:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D53F5E09BC; Fri, 30 Nov 2018 23:00:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A3381E09BC for ; Fri, 30 Nov 2018 23:00:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9B28C335C16 for ; Fri, 30 Nov 2018 23:00:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E362C2A7 for ; Fri, 30 Nov 2018 23:00:38 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1543618830.ba4d9e822666d49d04e7302d553ad4e6dce5158d.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/binutils/binutils-2.31.1-r1.ebuild sys-devel/binutils/binutils-9999.ebuild X-VCS-Directories: sys-devel/binutils/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: ba4d9e822666d49d04e7302d553ad4e6dce5158d X-VCS-Branch: master Date: Fri, 30 Nov 2018 23:00:38 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a31af51b-be7f-4c10-84bc-dac04fba4ba2 X-Archives-Hash: bca3ff182774234a97fee45eb60a45a1 commit: ba4d9e822666d49d04e7302d553ad4e6dce5158d Author: Andreas K. Hüttel gentoo org> AuthorDate: Fri Nov 30 23:00:20 2018 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Fri Nov 30 23:00:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba4d9e82 sys-devel/binutils: Strip -Wall -Wreturn-type in tests, bug 637066 Closes: https://bugs.gentoo.org/637066 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas K. Hüttel gentoo.org> sys-devel/binutils/binutils-2.31.1-r1.ebuild | 4 ++++ sys-devel/binutils/binutils-9999.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/sys-devel/binutils/binutils-2.31.1-r1.ebuild b/sys-devel/binutils/binutils-2.31.1-r1.ebuild index 180506d1f3e..4cb85dd6a7e 100644 --- a/sys-devel/binutils/binutils-2.31.1-r1.ebuild +++ b/sys-devel/binutils/binutils-2.31.1-r1.ebuild @@ -275,6 +275,10 @@ src_compile() { src_test() { cd "${MY_BUILDDIR}" + + # bug 637066 + filter-flags -Wall -Wreturn-type + emake -k check } diff --git a/sys-devel/binutils/binutils-9999.ebuild b/sys-devel/binutils/binutils-9999.ebuild index 52df1648f4f..5e72d97d140 100644 --- a/sys-devel/binutils/binutils-9999.ebuild +++ b/sys-devel/binutils/binutils-9999.ebuild @@ -275,6 +275,10 @@ src_compile() { src_test() { cd "${MY_BUILDDIR}" + + # bug 637066 + filter-flags -Wall -Wreturn-type + emake -k check }