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 48464158094 for ; Tue, 28 Jun 2022 07:47:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE587E09E4; Tue, 28 Jun 2022 07:46:58 +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 8C904E09E4 for ; Tue, 28 Jun 2022 07:46:58 +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 776013413A1 for ; Tue, 28 Jun 2022 07:46:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96F09105 for ; Tue, 28 Jun 2022 07:46:55 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1656402126.a513b2ee9a1b73cd6a513b37f6a2a54a5f7cb6ef.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/dxvk/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/dxvk/dxvk-1.10.1.ebuild app-emulation/dxvk/dxvk-9999.ebuild X-VCS-Directories: app-emulation/dxvk/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: a513b2ee9a1b73cd6a513b37f6a2a54a5f7cb6ef X-VCS-Branch: master Date: Tue, 28 Jun 2022 07:46:55 +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: f0f41122-7cc4-4374-a4a1-50c04dc4c59e X-Archives-Hash: 189e62f55fb6b8f8ef656ec14df1f4ad commit: a513b2ee9a1b73cd6a513b37f6a2a54a5f7cb6ef Author: Ionen Wolkens gentoo org> AuthorDate: Tue Jun 28 07:22:46 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Jun 28 07:42:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a513b2ee app-emulation/dxvk: change bits check method Unlikely, but old could fail if "amd64=86" is in the environment. Signed-off-by: Ionen Wolkens gentoo.org> app-emulation/dxvk/dxvk-1.10.1.ebuild | 2 +- app-emulation/dxvk/dxvk-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emulation/dxvk/dxvk-1.10.1.ebuild b/app-emulation/dxvk/dxvk-1.10.1.ebuild index d0bfdb15b8ca..cf84df747aaa 100644 --- a/app-emulation/dxvk/dxvk-1.10.1.ebuild +++ b/app-emulation/dxvk/dxvk-1.10.1.ebuild @@ -83,7 +83,7 @@ multilib_src_configure() { local emesonargs=( --prefix="${EPREFIX}"/usr/lib/${PN} - --{bin,lib}dir=x$((${ABI#x}==86?32:64)) + --{bin,lib}dir=x${MULTILIB_ABI_FLAG: -2} $(meson_use {,enable_}d3d9) $(meson_use {,enable_}d3d10) $(meson_use {,enable_}d3d11) diff --git a/app-emulation/dxvk/dxvk-9999.ebuild b/app-emulation/dxvk/dxvk-9999.ebuild index d0bfdb15b8ca..cf84df747aaa 100644 --- a/app-emulation/dxvk/dxvk-9999.ebuild +++ b/app-emulation/dxvk/dxvk-9999.ebuild @@ -83,7 +83,7 @@ multilib_src_configure() { local emesonargs=( --prefix="${EPREFIX}"/usr/lib/${PN} - --{bin,lib}dir=x$((${ABI#x}==86?32:64)) + --{bin,lib}dir=x${MULTILIB_ABI_FLAG: -2} $(meson_use {,enable_}d3d9) $(meson_use {,enable_}d3d10) $(meson_use {,enable_}d3d11)