Skip to content

Commit 2983ddd

Browse files
committed
vim: disable wayland to fix missing dependency
vim autodetects wayland if it's installed, but there's no dependency on it which results in: Package vim-full is missing dependencies for the following libraries: libwayland-client.so.0 Fixes: 4406b79 ("vim: bump to 9.1.1918") Signed-off-by: George Sapkin <[email protected]>
1 parent 90ee36f commit 2983ddd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

utils/vim/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
1010
PKG_NAME:=vim
1111
PKG_VERSION:=9.1.1918
1212
PKG_XXD_VERSION:=2025.08.24
13-
PKG_RELEASE:=1
13+
PKG_RELEASE:=2
1414
VIMVER:=91
1515

1616
PKG_SOURCE_PROTO:=git
@@ -126,7 +126,8 @@ CONFIGURE_ARGS += \
126126
--disable-libsodium \
127127
--disable-selinux \
128128
--with-tlib=ncurses \
129-
--with-compiledby="non-existent-hostname-compiled"
129+
--with-compiledby="non-existent-hostname-compiled" \
130+
--with-wayland=no
130131

131132
CONFIGURE_VARS += \
132133
ac_cv_header_elf_h=no \

0 commit comments

Comments
 (0)