From a9dce8f5024b61dc4eaeb4949474868e1c4e19ff Mon Sep 17 00:00:00 2001 From: TeleostNaCl Dai Date: Wed, 24 Dec 2025 22:59:36 +0800 Subject: [PATCH] vim: fix depends configuration Due to the incorrect DEPENDS configuration, the vim-full and vim-fuller packages won't show up in menuconfig if the vim-runtime package is not selected. This happens because these packages depend on vim-runtime. To fix this, add the '+' symbol to the DEPENDS line. This ensures that when either vim-full or vim-fuller is selected, the vim-runtime package (which is a dependency) will also be selected automatically. Fixes: d1351b3 ("vim: fix config and runtime") Signed-off-by: TeleostNaCl Dai (cherry picked from commit 639fdb4008867031a10ae671cacc29132809a10b) --- utils/vim/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/vim/Makefile b/utils/vim/Makefile index 8d7021f0c9..cc1afd4c3c 100644 --- a/utils/vim/Makefile +++ b/utils/vim/Makefile @@ -45,7 +45,7 @@ define Package/vim-full TITLE+= (Normal) PROVIDES:=vim CONFLICTS:=vim - DEPENDS:=vim-runtime + DEPENDS:=+vim-runtime EXTRA_DEPENDS:=vim-runtime (=$(PKG_VERSION)-r$(PKG_RELEASE)) endef @@ -54,7 +54,7 @@ define Package/vim-fuller TITLE+= (Huge) PROVIDES:=vim vim-full CONFLICTS:=vim vim-full - DEPENDS:=vim-runtime + DEPENDS:=+vim-runtime EXTRA_DEPENDS:=vim-runtime (=$(PKG_VERSION)-r$(PKG_RELEASE)) endef