net-irc/halloy: Fix sed command in src_configure

Signed-off-by: Alberto Gireud <agireud@protonmail.com>
This commit is contained in:
Alberto Gireud
2024-09-15 15:54:45 -05:00
parent f85c87b79f
commit 6fb37f3d4a

View File

@@ -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
}