From 94741678973838e5402de59999384b9524498d80 Mon Sep 17 00:00:00 2001 From: mglae Date: Sat, 31 Dec 2022 15:29:31 +0100 Subject: [PATCH] functions: fix build_with_debug() to include dependency base packages like "kodi+" --- config/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/functions b/config/functions index a03dbb490b..a134b56f00 100644 --- a/config/functions +++ b/config/functions @@ -744,7 +744,7 @@ build_with_debug() { [ "${PKG_IS_KERNEL_PKG}" = "yes" ] && listcontains "${_DEBUG_DEPENDS_LIST}" "linux\+" && return 0 # Build this package with debug if it's a resolved dependency - listcontains "${_DEBUG_DEPENDS_LIST}" "${PKG_NAME}" && return 0 + listcontains "${_DEBUG_DEPENDS_LIST}" "${PKG_NAME}[+]?" && return 0 fi return 1