From a8645d1bfe89276ca5b7a738b344f177e454394a Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Tue, 9 Feb 2021 09:02:06 +1100 Subject: [PATCH] fix Jellyfin, compile to single binary fixes https://github.com/publicarray/spksrc/issues/27 --- cross/jellyfin/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cross/jellyfin/Makefile b/cross/jellyfin/Makefile index ab004725939..f7b1254883d 100644 --- a/cross/jellyfin/Makefile +++ b/cross/jellyfin/Makefile @@ -10,11 +10,11 @@ HOMEPAGE = https://jellyfin.org COMMENT = The Free Software Media System. It is an alternative to the proprietary Emby and Plex. LICENSE = GPLv2 - -BUILD_DEPENDS = native/dotnet-sdk-3.1 +DOTNET_VERSION=3.1 +BUILD_DEPENDS = native/dotnet-sdk-$(DOTNET_VERSION) DOTNET_OPTIMIZE=1 -DOTNET_SELF_CONTAINED=1 +DOTNET_SINGLE_FILE=1 DOTNET_PACKAGE_NAME=Jellyfin.Server include ../../mk/spksrc.cross-dotnet.mk