commit: 6fb37f3d4a39c0e6b4f2b4bb55f4f8ee3bd850f2
Author: Alberto Gireud <agireud <AT> protonmail <DOT> com>
AuthorDate: Sun Sep 15 20:54:45 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sun Sep 15 20:54:45 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6fb37f3d
net-irc/halloy: Fix sed command in src_configure
Signed-off-by: Alberto Gireud <agireud <AT> protonmail.com>
net-irc/halloy/halloy-2024.11.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net-irc/halloy/halloy-2024.11.ebuild
b/net-irc/halloy/halloy-2024.11.ebuild
index 141496aaf..93c9dcded 100644
--- a/net-irc/halloy/halloy-2024.11.ebuild
+++ b/net-irc/halloy/halloy-2024.11.ebuild
@@ -663,7 +663,8 @@ src_configure() {
if [[ ${PV} != *9999* ]] ; then
# Fix cargo.eclass handling of patched dependencies
#
https://github.com/squidowl/halloy/blob/2024.11/Cargo.toml#L60-L62
- sed -i "s,'https://github.com/iced-rs/iced',crates-io,g"
"${ECARGO_HOME}/config" || die
+ sed -i "s,'https://github.com/iced-rs/iced',crates-io,g" \
+ "${ECARGO_HOME}/config.toml" || die
fi
cargo_src_configure
}