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 1EEBB158086 for ; Thu, 23 Dec 2021 21:34:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2EA72BC055; Thu, 23 Dec 2021 21:34:18 +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 7CDA72BC055 for ; Thu, 23 Dec 2021 21:34:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 41EF9342DCD for ; Thu, 23 Dec 2021 21:34:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FD0C256 for ; Thu, 23 Dec 2021 21:34:08 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1640295231.af15274924fc38ce214c8fefab092c55fa023a47.epsilon-0@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-libs/dpdk/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-libs/dpdk/dpdk-21.11.ebuild X-VCS-Directories: net-libs/dpdk/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: af15274924fc38ce214c8fefab092c55fa023a47 X-VCS-Branch: dev Date: Thu, 23 Dec 2021 21:34:08 +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: cb0305be-7f9e-45c3-a026-5606f889de86 X-Archives-Hash: 51088e783da96063e47115ecb51b214c commit: af15274924fc38ce214c8fefab092c55fa023a47 Author: Aisha Tammy aisha cc> AuthorDate: Thu Dec 23 21:33:51 2021 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Thu Dec 23 21:33:51 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=af152749 net-libs/dpdk: fix finding python files Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Aisha Tammy aisha.cc> net-libs/dpdk/dpdk-21.11.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-libs/dpdk/dpdk-21.11.ebuild b/net-libs/dpdk/dpdk-21.11.ebuild index ba9c719e8..a09a4bc53 100644 --- a/net-libs/dpdk/dpdk-21.11.ebuild +++ b/net-libs/dpdk/dpdk-21.11.ebuild @@ -56,7 +56,7 @@ src_configure() { src_install() { meson_src_install - local pyfiles=( "${ED}/usr/bin/*.py" ) + local pyfiles=( "${ED}"/usr/bin/*.py ) for pyfile in "${pyfiles[@]}"; do python_fix_shebang "${pyfile}" done