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 8F506138334 for ; Sat, 13 Apr 2019 16:56:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 327F5E0972; Sat, 13 Apr 2019 16:56:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 0F5F2E0972 for ; Sat, 13 Apr 2019 16:56:12 +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 615B6340F3C for ; Sat, 13 Apr 2019 16:56:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5DCF357E for ; Sat, 13 Apr 2019 16:56:09 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1555174437.9df3466524c7e920d10ebb6e955723ac30651de7.dev-zero@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/edac-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/edac-utils/edac-utils-0.18.ebuild X-VCS-Directories: sys-apps/edac-utils/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: 9df3466524c7e920d10ebb6e955723ac30651de7 X-VCS-Branch: master Date: Sat, 13 Apr 2019 16:56:09 +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: 28775ee4-bcea-4035-9ea0-90ff726167a2 X-Archives-Hash: 0ae328545f7bf6083f682de51e4114a6 commit: 9df3466524c7e920d10ebb6e955723ac30651de7 Author: Tiziano Müller gentoo org> AuthorDate: Sat Apr 13 16:53:57 2019 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Sat Apr 13 16:53:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9df34665 sys-apps/edac-utils: remove -Werror with USE=debug Closes: https://bugs.gentoo.org/637696 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Tiziano Müller gentoo.org> sys-apps/edac-utils/edac-utils-0.18.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sys-apps/edac-utils/edac-utils-0.18.ebuild b/sys-apps/edac-utils/edac-utils-0.18.ebuild index 5bf6da23f31..84151a32ea1 100644 --- a/sys-apps/edac-utils/edac-utils-0.18.ebuild +++ b/sys-apps/edac-utils/edac-utils-0.18.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -17,6 +17,12 @@ DEPEND="sys-fs/sysfsutils" RDEPEND="${DEPEND} sys-apps/dmidecode" +src_prepare() { + sed -i \ + -e 's|-Werror||' \ + configure || die +} + src_configure() { econf \ --disable-static \