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 DB270158088 for ; Fri, 14 Jan 2022 18:54:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D59BE2BC01D; Fri, 14 Jan 2022 18:54:49 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6A8062BC01D for ; Fri, 14 Jan 2022 18:54: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 6D689342F8B for ; Fri, 14 Jan 2022 18:54:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA066D0 for ; Fri, 14 Jan 2022 18:54:46 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1642186481.665e19ac17ea6796454813d7e4818ddfdeab7c86.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bcc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/bcc/bcc-0.23.0-r4.ebuild dev-util/bcc/bcc-0.23.0-r5.ebuild X-VCS-Directories: dev-util/bcc/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 665e19ac17ea6796454813d7e4818ddfdeab7c86 X-VCS-Branch: master Date: Fri, 14 Jan 2022 18:54:46 +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: 6042610d-b4e6-4d33-8d1b-c2ce4988bfb1 X-Archives-Hash: 4659e34c27381d17f09610bee0a9ccf0 commit: 665e19ac17ea6796454813d7e4818ddfdeab7c86 Author: Patrick McLean gentoo org> AuthorDate: Fri Jan 14 18:51:19 2022 +0000 Commit: Patrick McLean gentoo org> CommitDate: Fri Jan 14 18:54:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=665e19ac dev-util/bcc: Fix install name of trace tool Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Patrick McLean gentoo.org> dev-util/bcc/{bcc-0.23.0-r4.ebuild => bcc-0.23.0-r5.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/bcc/bcc-0.23.0-r4.ebuild b/dev-util/bcc/bcc-0.23.0-r5.ebuild similarity index 98% rename from dev-util/bcc/bcc-0.23.0-r4.ebuild rename to dev-util/bcc/bcc-0.23.0-r5.ebuild index 4f45cf6e2a90..7ff16dec0b5d 100644 --- a/dev-util/bcc/bcc-0.23.0-r4.ebuild +++ b/dev-util/bcc/bcc-0.23.0-r5.ebuild @@ -120,7 +120,7 @@ src_install() { for tool in "${ED}"/usr/share/bcc/tools/*; do [[ ! -x ${tool} && ! -L ${tool} || -d ${tool} ]] && continue name=${tool##*/} - [[ -n ${rename_tools[${tool##*/}]} ]] && name=bcc-${tool} + [[ -n ${rename_tools[${name}]} ]] && name=bcc-${name} dosym8 -r "${tool#${ED}}" /usr/sbin/${name} done