dev-dotnet/dotnet-runtime-nugets: do not die on arm with musl

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2023-11-05 00:23:54 +01:00
parent 2241c26364
commit 9c303e0e9e

View File

@@ -51,6 +51,11 @@ src_install() {
)
local nuget_namespace
for nuget_namespace in "${nuget_namespaces[@]}" ; do
if use arm && use elibc_musl ; then
# Well... those do not exist for net3.1.
continue
fi
nuget_donuget "${DISTDIR}/${nuget_namespace}.${runtime}.${PV}.nupkg"
done
}