diff options
Diffstat (limited to 'eclass/dotnet-pkg.eclass')
-rw-r--r-- | eclass/dotnet-pkg.eclass | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/eclass/dotnet-pkg.eclass b/eclass/dotnet-pkg.eclass index 201daf1ecce3..b4f0c053d69a 100644 --- a/eclass/dotnet-pkg.eclass +++ b/eclass/dotnet-pkg.eclass @@ -136,18 +136,8 @@ dotnet-pkg_pkg_setup() { # copied into the "NUGET_PACKAGES" directory. dotnet-pkg_src_unpack() { nuget_link-system-nugets - - local archive - for archive in ${A} ; do - case "${archive}" in - *.nupkg ) - nuget_link "${DISTDIR}/${archive}" - ;; - * ) - unpack "${archive}" - ;; - esac - done + nuget_link-nuget-archives + nuget_unpack-non-nuget-archives } # @FUNCTION: dotnet-pkg_src_prepare |