From 0ce6deb01fb78166369fff5761cc782b88d7e914 Mon Sep 17 00:00:00 2001 From: Lucio Sauer Date: Thu, 2 Jan 2025 13:03:12 +0100 Subject: [PATCH] media-libs/dr_wav: replace assert with pipestatus Signed-off-by: Lucio Sauer --- media-libs/dr_wav/dr_wav-0.13.17.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/media-libs/dr_wav/dr_wav-0.13.17.ebuild b/media-libs/dr_wav/dr_wav-0.13.17.ebuild index c843ebb601..80ba9539e1 100644 --- a/media-libs/dr_wav/dr_wav-0.13.17.ebuild +++ b/media-libs/dr_wav/dr_wav-0.13.17.ebuild @@ -1,9 +1,9 @@ -# Copyright 2023-2024 Gentoo Authors +# Copyright 2023-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit edo toolchain-funcs +inherit eapi9-pipestatus edo toolchain-funcs COMMIT="660795b2834aebb2217c9849d668b6e4bd4ef810" @@ -41,9 +41,9 @@ src_prepare() { fi awk '/Introduction/,/\*\//' dr_wav.h | sed '$d' > README - assert + pipestatus || die awk '/REVISION HISTORY/,/\*\//' dr_wav.h | sed '$d' > CHANGELOG - assert + pipestatus || die default }