From 3ce48e7c06563d25f4e6c51e0547c6a2245946f0 Mon Sep 17 00:00:00 2001 From: Fabrice Delliaux Date: Wed, 25 Feb 2026 08:01:19 +0100 Subject: [PATCH] net-im/chatterino: fix die statements in 9999 Signed-off-by: Fabrice Delliaux --- net-im/chatterino/chatterino-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-im/chatterino/chatterino-9999.ebuild b/net-im/chatterino/chatterino-9999.ebuild index 011f2a524e..2faf01c749 100644 --- a/net-im/chatterino/chatterino-9999.ebuild +++ b/net-im/chatterino/chatterino-9999.ebuild @@ -145,13 +145,13 @@ src_prepare() { ln -sr ../lua-* lib/lua/src || die # delete ccache detection - already handled by portage - sed -i -e '/CCACHE_PROGRAM ccache/,+6d' CMakeLists.txt || sed "Sed ccache broke !" + sed -i -e '/CCACHE_PROGRAM ccache/,+6d' CMakeLists.txt || die "Sed ccache broke !" # disable doxygen automagic detection # doyxgen doc generation seems anyway broken for now - sed -i -e '/find_package(Doxygen)/d' CMakeLists.txt || sed "Sed doxygen1 broke !" + sed -i -e '/find_package(Doxygen)/d' CMakeLists.txt || die "Sed doxygen1 broke !" sed -i -e 's/Build rapidjson documentation." ON/Build rapidjson documentation." OFF/g' \ - lib/rapidjson/CMakeLists.txt || sed "Sed doxygen2 broke !" + lib/rapidjson/CMakeLists.txt || die "Sed doxygen2 broke !" # bug 936966 sed 's/-Werror[^[:space:])"]*//' -i --follow-symlinks \