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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 56E5815808D for ; Fri, 22 Apr 2022 07:05:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4ACBBE0946; Fri, 22 Apr 2022 07:05:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0574E0946 for ; Fri, 22 Apr 2022 07:05:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A91B934184E for ; Fri, 22 Apr 2022 07:05:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D1FC3B5 for ; Fri, 22 Apr 2022 07:05:45 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1650611139.d16a0fb4d049ecad13f64179257bf5cc4c8b06ed.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xen-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild X-VCS-Directories: app-emulation/xen-tools/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: d16a0fb4d049ecad13f64179257bf5cc4c8b06ed X-VCS-Branch: master Date: Fri, 22 Apr 2022 07:05:45 +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: 05f43327-60ad-45d2-b153-df1f1bb2b32e X-Archives-Hash: ec85bf91158c9a140a7f9cf688c0a829 commit: d16a0fb4d049ecad13f64179257bf5cc4c8b06ed Author: Florian Schmaus gentoo org> AuthorDate: Fri Apr 22 07:05:09 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Apr 22 07:05:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d16a0fb4 app-emulation/xen-tools: remove -Werror Closes: https://bugs.gentoo.org/839891 Signed-off-by: Florian Schmaus gentoo.org> app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild b/app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild index 750d5d2e6c4f..5d286bc55afe 100644 --- a/app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.16.0-r3.ebuild @@ -415,6 +415,10 @@ src_prepare() { sed -e 's/$(ABI_DUMPER) /echo /g' \ -i tools/libs/libs.mk || die + # Remove -Werror + find . -type f \( -name Makefile -o -name "*.mk" \) \ + -exec sed -i "s/-Werror //g" {} + || die + default }