mirror of
https://git.yoctoproject.org/poky
synced 2026-03-11 09:49:41 +01:00
Now that we have a common inc file for both vim and vim-tiny move a few bits of logic out of vim.inc and in to vim_$VER.bb so that vim adds things rather than vim-tiny removes them. Suggested-by: Martin Jansa <martin.jansa@gmail.com> (From OE-Core rev: a9f62ea2c380375c749a28405708bfdb7754f51f) Signed-off-by: Tom Rini <trini@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 lines
226 B
BlitzBasic
13 lines
226 B
BlitzBasic
require vim.inc
|
|
|
|
SUMMARY += " (with tiny features)"
|
|
|
|
PACKAGECONFIG += "tiny"
|
|
|
|
do_install() {
|
|
install -D -m 0755 ${S}/src/vim ${D}/${bindir}/vim.tiny
|
|
}
|
|
|
|
ALTERNATIVE_PRIORITY = "90"
|
|
ALTERNATIVE_TARGET = "${bindir}/vim.tiny"
|