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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 14DB413946D for ; Sun, 8 Aug 2021 09:54:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0868E0839; Sun, 8 Aug 2021 09:54:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 858EBE0839 for ; Sun, 8 Aug 2021 09:54:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2F501342DAE for ; Sun, 8 Aug 2021 09:54:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B714842 for ; Sun, 8 Aug 2021 09:54:30 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1628416458.5dfbd7110e7333f57a7b839df4c1c51ac261ad25.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/dolphin/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild games-emulation/dolphin/dolphin-9999.ebuild X-VCS-Directories: games-emulation/dolphin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5dfbd7110e7333f57a7b839df4c1c51ac261ad25 X-VCS-Branch: master Date: Sun, 8 Aug 2021 09:54:30 +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: 9ead8ddc-85c0-4aac-b9ce-cc4f72a4fca3 X-Archives-Hash: feb7f3ad0d0dddf6b9f3173f3b54e08b commit: 5dfbd7110e7333f57a7b839df4c1c51ac261ad25 Author: Michał Górny gentoo org> AuthorDate: Sun Aug 8 08:42:43 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Aug 8 09:54:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dfbd711 games-emulation/dolphin: Add missing ||die Signed-off-by: Michał Górny gentoo.org> games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild | 6 ++++-- games-emulation/dolphin/dolphin-9999.ebuild | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild b/games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild index 8b084ec1f69..ac9393e5df3 100644 --- a/games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild +++ b/games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild @@ -119,10 +119,12 @@ src_prepare() { done # About 50% compile-time speedup - use vulkan || sed -i -e '/Externals\/glslang/d' CMakeLists.txt + if ! use vulkan; then + sed -i -e '/Externals\/glslang/d' CMakeLists.txt || die + fi # Remove dirty suffix: needed for netplay - sed -i -e 's/--dirty/&=""/' CMakeLists.txt + sed -i -e 's/--dirty/&=""/' CMakeLists.txt || die } src_configure() { diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild index c46031141fb..29779609bc0 100644 --- a/games-emulation/dolphin/dolphin-9999.ebuild +++ b/games-emulation/dolphin/dolphin-9999.ebuild @@ -121,10 +121,12 @@ src_prepare() { done # About 50% compile-time speedup - use vulkan || sed -i -e '/Externals\/glslang/d' CMakeLists.txt + if ! use vulkan; then + sed -i -e '/Externals\/glslang/d' CMakeLists.txt || die + fi # Remove dirty suffix: needed for netplay - sed -i -e 's/--dirty/&=""/' CMakeLists.txt + sed -i -e 's/--dirty/&=""/' CMakeLists.txt || die } src_configure() {