mirror of
https://github.com/openwrt/packages.git
synced 2026-02-04 12:06:29 +08:00
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)
This commit is contained in:
committed by
Josef Schlehofer
parent
ca195ccafa
commit
e2885b9ddd
@@ -46,12 +46,16 @@ endef
|
|||||||
define Package/vim-full
|
define Package/vim-full
|
||||||
$(call Package/vim/Default)
|
$(call Package/vim/Default)
|
||||||
TITLE+= (Normal)
|
TITLE+= (Normal)
|
||||||
|
PROVIDES:=vim
|
||||||
|
CONFLICTS:=vim
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
||||||
define Package/vim-fuller
|
define Package/vim-fuller
|
||||||
$(call Package/vim/Default)
|
$(call Package/vim/Default)
|
||||||
TITLE+= (Big)
|
TITLE+= (Big)
|
||||||
|
PROVIDES:=vim vim-full
|
||||||
|
CONFLICTS:=vim vim-full
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/vim-runtime
|
define Package/vim-runtime
|
||||||
|
|||||||
Reference in New Issue
Block a user