mirror of
https://git.yoctoproject.org/poky
synced 2026-02-27 20:09:41 +01:00
This brings us to the current version of vim. As part of this we need to work-around a locale issue that upstream has exposed. We do not support fully / correctly the certain locales. Attempting to use these with msgfmt in order to update the ".desktop" files exposes this problem and leads to the compile failing. (From OE-Core rev: ffa4b0abcab2ed4e4f642b4b3140aa6095938422) Signed-off-by: Tom Rini <trini@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
289 B
BlitzBasic
16 lines
289 B
BlitzBasic
require vim_${PV}.bb
|
|
|
|
SUMMARY += " (with tiny features)"
|
|
|
|
PROVIDES_remove = "xxd"
|
|
ALTERNATIVE_${PN}_remove = "xxd"
|
|
|
|
PACKAGECONFIG += "tiny"
|
|
|
|
do_install() {
|
|
install -D -m 0755 ${S}/src/vim ${D}/${bindir}/vim.tiny
|
|
}
|
|
|
|
ALTERNATIVE_PRIORITY = "90"
|
|
ALTERNATIVE_TARGET = "${bindir}/vim.tiny"
|