From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1476875-garchives=archives.gentoo.org@lists.gentoo.org> 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 9303515800F for <garchives@archives.gentoo.org>; Fri, 13 Jan 2023 15:27:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84D5FE0876; Fri, 13 Jan 2023 15:27:44 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6C19AE0876 for <gentoo-commits@lists.gentoo.org>; Fri, 13 Jan 2023 15:27:44 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8848C340E97 for <gentoo-commits@lists.gentoo.org>; Fri, 13 Jan 2023 15:27:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D9497FA for <gentoo-commits@lists.gentoo.org>; Fri, 13 Jan 2023 15:27:42 +0000 (UTC) From: "Naohiro Aota" <naota@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Naohiro Aota" <naota@gentoo.org> Message-ID: <1673623618.89389a9fc60661d2bb0b9590e012cf75cbe1960b.naota@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/perf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/perf/perf-6.0.ebuild X-VCS-Directories: dev-util/perf/ X-VCS-Committer: naota X-VCS-Committer-Name: Naohiro Aota X-VCS-Revision: 89389a9fc60661d2bb0b9590e012cf75cbe1960b X-VCS-Branch: master Date: Fri, 13 Jan 2023 15:27:42 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6c3725a1-1eb1-4345-b936-7d686c814f9b X-Archives-Hash: eee5f2d5ba7526b8e9771ca38b14ad74 commit: 89389a9fc60661d2bb0b9590e012cf75cbe1960b Author: Naohiro Aota <naota <AT> gentoo <DOT> org> AuthorDate: Fri Jan 13 15:25:47 2023 +0000 Commit: Naohiro Aota <naota <AT> gentoo <DOT> org> CommitDate: Fri Jan 13 15:26:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89389a9f dev-util/perf: drop -Werror from Makefile Closes: https://bugs.gentoo.org/888837 Signed-off-by: Naohiro Aota <naota <AT> gentoo.org> dev-util/perf/perf-6.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-util/perf/perf-6.0.ebuild b/dev-util/perf/perf-6.0.ebuild index 7436087635dc..0f780281f20f 100644 --- a/dev-util/perf/perf-6.0.ebuild +++ b/dev-util/perf/perf-6.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -152,7 +152,8 @@ src_prepare() { "${S}"/Makefile.perf || die # A few places still use -Werror w/out $(WERROR) protection. sed -i -e 's@-Werror@@' \ - "${S}"/Makefile.perf "${S_K}"/tools/lib/bpf/Makefile || die + "${S}"/Makefile.perf "${S_K}"/tools/lib/bpf/Makefile \ + "${S_K}"/tools/lib/perf/Makefile || die # Avoid the call to make kernelversion sed -i -e '/PERF-VERSION-GEN/d' Makefile.perf || die