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 EC3DF158091 for ; Thu, 16 Jun 2022 09:34:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F08BE099F; Thu, 16 Jun 2022 09:34:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E9867E099F for ; Thu, 16 Jun 2022 09:34:30 +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 084AB341FF4 for ; Thu, 16 Jun 2022 09:34:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E5D8471 for ; Thu, 16 Jun 2022 09:34:28 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1655372048.12fd68f5ccf1ae5ab9d364ca2800fd86c1c4b6d9.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/perf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/perf/perf-5.15-r1.ebuild dev-util/perf/perf-5.17.1.ebuild dev-util/perf/perf-5.18.ebuild X-VCS-Directories: dev-util/perf/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 12fd68f5ccf1ae5ab9d364ca2800fd86c1c4b6d9 X-VCS-Branch: master Date: Thu, 16 Jun 2022 09:34:28 +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: c9857af5-a95e-4bb7-90ce-027a32c9ceb1 X-Archives-Hash: 3c944a569c7d012be11ff6bc513914a4 commit: 12fd68f5ccf1ae5ab9d364ca2800fd86c1c4b6d9 Author: Guilherme Amadio gentoo org> AuthorDate: Thu Jun 16 09:09:18 2022 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Thu Jun 16 09:34:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12fd68f5 dev-util/perf: use at sign as delimiter in sed commands Closes: https://bugs.gentoo.org/832165 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Guilherme Amadio gentoo.org> dev-util/perf/perf-5.15-r1.ebuild | 4 ++-- dev-util/perf/perf-5.17.1.ebuild | 4 ++-- dev-util/perf/perf-5.18.ebuild | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-util/perf/perf-5.15-r1.ebuild b/dev-util/perf/perf-5.15-r1.ebuild index 21985387f161..9f1e52387618 100644 --- a/dev-util/perf/perf-5.15-r1.ebuild +++ b/dev-util/perf/perf-5.15-r1.ebuild @@ -150,10 +150,10 @@ src_prepare() { # Drop some upstream too-developer-oriented flags and fix the # Makefile in general sed -i \ - -e "s:\$(sysconfdir_SQ)/bash_completion.d:$(get_bashcompdir):" \ + -e "s@\$(sysconfdir_SQ)/bash_completion.d@$(get_bashcompdir)@" \ "${S}"/Makefile.perf || die # A few places still use -Werror w/out $(WERROR) protection. - sed -i -e 's:-Werror::' \ + sed -i -e 's@-Werror@@' \ "${S}"/Makefile.perf "${S_K}"/tools/lib/bpf/Makefile || die # Avoid the call to make kernelversion diff --git a/dev-util/perf/perf-5.17.1.ebuild b/dev-util/perf/perf-5.17.1.ebuild index a2e565d93fcb..773d205044fc 100644 --- a/dev-util/perf/perf-5.17.1.ebuild +++ b/dev-util/perf/perf-5.17.1.ebuild @@ -148,10 +148,10 @@ src_prepare() { # Drop some upstream too-developer-oriented flags and fix the # Makefile in general sed -i \ - -e "s:\$(sysconfdir_SQ)/bash_completion.d:$(get_bashcompdir):" \ + -e "s@\$(sysconfdir_SQ)/bash_completion.d@$(get_bashcompdir)@" \ "${S}"/Makefile.perf || die # A few places still use -Werror w/out $(WERROR) protection. - sed -i -e 's:-Werror::' \ + sed -i -e 's@-Werror@@' \ "${S}"/Makefile.perf "${S_K}"/tools/lib/bpf/Makefile || die # Avoid the call to make kernelversion diff --git a/dev-util/perf/perf-5.18.ebuild b/dev-util/perf/perf-5.18.ebuild index a2e565d93fcb..773d205044fc 100644 --- a/dev-util/perf/perf-5.18.ebuild +++ b/dev-util/perf/perf-5.18.ebuild @@ -148,10 +148,10 @@ src_prepare() { # Drop some upstream too-developer-oriented flags and fix the # Makefile in general sed -i \ - -e "s:\$(sysconfdir_SQ)/bash_completion.d:$(get_bashcompdir):" \ + -e "s@\$(sysconfdir_SQ)/bash_completion.d@$(get_bashcompdir)@" \ "${S}"/Makefile.perf || die # A few places still use -Werror w/out $(WERROR) protection. - sed -i -e 's:-Werror::' \ + sed -i -e 's@-Werror@@' \ "${S}"/Makefile.perf "${S_K}"/tools/lib/bpf/Makefile || die # Avoid the call to make kernelversion