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 63053158064 for ; Mon, 6 May 2024 18:30:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 941E2E29F6; Mon, 6 May 2024 18:30:19 +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 78241E29F6 for ; Mon, 6 May 2024 18:30:19 +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 723AC343165 for ; Mon, 6 May 2024 18:30:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A569E93E for ; Mon, 6 May 2024 18:30:16 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1715020158.0c7d6829d1e93a3db6cbaa506225a1429be56a3b.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/arcconf/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/arcconf/arcconf-4.17.00.26540.ebuild X-VCS-Directories: sys-block/arcconf/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 0c7d6829d1e93a3db6cbaa506225a1429be56a3b X-VCS-Branch: master Date: Mon, 6 May 2024 18:30:16 +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: a876278c-dd31-4c6d-9b78-c4427b141769 X-Archives-Hash: 332eb02cfa5bba36819a462f33204efb commit: 0c7d6829d1e93a3db6cbaa506225a1429be56a3b Author: Conrad Kostecki gentoo org> AuthorDate: Mon May 6 18:29:18 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon May 6 18:29:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c7d6829 sys-block/arcconf: fix install Closes: https://bugs.gentoo.org/931285 Signed-off-by: Conrad Kostecki gentoo.org> sys-block/arcconf/arcconf-4.17.00.26540.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-block/arcconf/arcconf-4.17.00.26540.ebuild b/sys-block/arcconf/arcconf-4.17.00.26540.ebuild index c5632d082aa8..e1c01a3e4e5c 100644 --- a/sys-block/arcconf/arcconf-4.17.00.26540.ebuild +++ b/sys-block/arcconf/arcconf-4.17.00.26540.ebuild @@ -10,7 +10,7 @@ inherit linux-info DESCRIPTION="Microsemi Adaptec RAID Controller Command Line Utility" HOMEPAGE="https://www.microsemi.com/" SRC_URI="http://download.adaptec.com/raid/storage_manager/${PN}_${MY_PV}.zip" -S="${WORKDIR}/linux" +S="${WORKDIR}" LICENSE="Microsemi" SLOT="0" @@ -31,5 +31,5 @@ pkg_setup() { } src_install() { - dobin $(usex arm64 'linuxarm_x64/cmdline/' '')arcconf + dobin linux$(usex arm64 'arm' '')_x64/cmdline/arcconf }