mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 18:39:40 +01:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
482 B
BlitzBasic
16 lines
482 B
BlitzBasic
require vim.inc
|
|
|
|
PROVIDES = "xxd"
|
|
|
|
PACKAGECONFIG:class-native = ""
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
ALTERNATIVE:${PN}:append = " xxd"
|
|
ALTERNATIVE_TARGET[xxd] = "${bindir}/xxd"
|
|
ALTERNATIVE_LINK_NAME[xxd] = "${bindir}/xxd"
|
|
|
|
# We override the default in security_flags.inc because vim (not vim-tiny!) will abort
|
|
# in many places for _FORTIFY_SOURCE=2. Security flags become part of CC.
|
|
#
|
|
lcl_maybe_fortify = "${@oe.utils.conditional('DEBUG_BUILD','1','','-D_FORTIFY_SOURCE=1',d)}"
|