diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-11-05 00:23:54 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-11-05 00:36:52 +0100 |
commit | 9c303e0e9edf8fb446468b308bbab03ec0055158 (patch) | |
tree | eeeb5ba695014155199772fd5cc66c6f8431ca16 /dev-dotnet/dotnet-runtime-nugets | |
parent | net-misc/gallery-dl: bump to 1.26.2 (diff) | |
download | gentoo-9c303e0e9edf8fb446468b308bbab03ec0055158.tar.gz gentoo-9c303e0e9edf8fb446468b308bbab03ec0055158.tar.bz2 gentoo-9c303e0e9edf8fb446468b308bbab03ec0055158.zip |
dev-dotnet/dotnet-runtime-nugets: do not die on arm with musl
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-dotnet/dotnet-runtime-nugets')
-rw-r--r-- | dev-dotnet/dotnet-runtime-nugets/dotnet-runtime-nugets-3.1.32.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dev-dotnet/dotnet-runtime-nugets/dotnet-runtime-nugets-3.1.32.ebuild b/dev-dotnet/dotnet-runtime-nugets/dotnet-runtime-nugets-3.1.32.ebuild index f018132f4e64..7c9ec41e744d 100644 --- a/dev-dotnet/dotnet-runtime-nugets/dotnet-runtime-nugets-3.1.32.ebuild +++ b/dev-dotnet/dotnet-runtime-nugets/dotnet-runtime-nugets-3.1.32.ebuild @@ -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 } |