Skip to content

Commit 639fdb4

Browse files
teleostnaclGeorgeSapkin
authored andcommitted
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 <teleostnacl@gmail.com>
1 parent 8e535fd commit 639fdb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/vim/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ define Package/vim-full
4545
TITLE+= (Normal)
4646
PROVIDES:=vim
4747
CONFLICTS:=vim
48-
DEPENDS:=vim-runtime
48+
DEPENDS:=+vim-runtime
4949
EXTRA_DEPENDS:=vim-runtime (=$(PKG_VERSION)-r$(PKG_RELEASE))
5050
endef
5151

@@ -54,7 +54,7 @@ define Package/vim-fuller
5454
TITLE+= (Huge)
5555
PROVIDES:=vim vim-full
5656
CONFLICTS:=vim vim-full
57-
DEPENDS:=vim-runtime
57+
DEPENDS:=+vim-runtime
5858
EXTRA_DEPENDS:=vim-runtime (=$(PKG_VERSION)-r$(PKG_RELEASE))
5959
endef
6060

0 commit comments

Comments
 (0)