Browse Source

vim: variants conflict with each other

This adds conflicts between the variants,
because they provide the same files, and it should not be
possible to install them side by side. Otherwise, it might happen that
half files would be from one variant and the other half from the
other.

Also, adds provides as if you request to install ``vim`` and
``vim-full``, then the request could be satisfied even they collide,
because ``vim-full`` provides ``vim`` package.

Signed-off-by: Karel Kočí <cynerd@email.cz>
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
[add commit message]
(cherry picked from commit 46c058468a)
lilik-openwrt-22.03
Karel Kočí 2 years ago
committed by Josef Schlehofer
parent
commit
d4cc947570
No known key found for this signature in database GPG Key ID: B950216FE4329F4C
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      utils/vim/Makefile

+ 4
- 0
utils/vim/Makefile View File

@ -41,12 +41,16 @@ endef
define Package/vim-full
$(call Package/vim/Default)
TITLE+= (Normal)
PROVIDES:=vim
CONFLICTS:=vim
endef
define Package/vim-fuller
$(call Package/vim/Default)
TITLE+= (Big)
PROVIDES:=vim vim-full
CONFLICTS:=vim vim-full
endef
define Package/vim-runtime


Loading…
Cancel
Save