Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bcc/
Date: Fri, 14 Jan 2022 18:54:50
Message-Id: 1642186481.665e19ac17ea6796454813d7e4818ddfdeab7c86.chutzpah@gentoo
1 commit: 665e19ac17ea6796454813d7e4818ddfdeab7c86
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 14 18:51:19 2022 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 14 18:54:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=665e19ac
7
8 dev-util/bcc: Fix install name of trace tool
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
12
13 dev-util/bcc/{bcc-0.23.0-r4.ebuild => bcc-0.23.0-r5.ebuild} | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/dev-util/bcc/bcc-0.23.0-r4.ebuild b/dev-util/bcc/bcc-0.23.0-r5.ebuild
17 similarity index 98%
18 rename from dev-util/bcc/bcc-0.23.0-r4.ebuild
19 rename to dev-util/bcc/bcc-0.23.0-r5.ebuild
20 index 4f45cf6e2a90..7ff16dec0b5d 100644
21 --- a/dev-util/bcc/bcc-0.23.0-r4.ebuild
22 +++ b/dev-util/bcc/bcc-0.23.0-r5.ebuild
23 @@ -120,7 +120,7 @@ src_install() {
24 for tool in "${ED}"/usr/share/bcc/tools/*; do
25 [[ ! -x ${tool} && ! -L ${tool} || -d ${tool} ]] && continue
26 name=${tool##*/}
27 - [[ -n ${rename_tools[${tool##*/}]} ]] && name=bcc-${tool}
28 + [[ -n ${rename_tools[${name}]} ]] && name=bcc-${name}
29 dosym8 -r "${tool#${ED}}" /usr/sbin/${name}
30 done