I noticed that the samba package is not built unless KODI_SAMBA_SUPPORT is set to yes.
SAMBA_SUPPORT="yes" and SAMBA_SERVER="yes" have no effect if KODI_SAMBA_SUPPORT="no"
My workaround is to add
Code
if [ "$SAMBA_SERVER" = "yes" ] || [ "$SAMBA_SUPPORT" = "yes" ]; then
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET samba"
fi
at the end of packages/virtual/network/package.mk
If this is the right way to do and that was forgotten then can it be added please ?