diff options
author | Joe Slater <joe.slater@windriver.com> | 2020-06-06 10:17:01 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-06-09 13:14:01 +0100 |
commit | 844d54288eba16127e80e921a4e93e1aa6bbce48 (patch) | |
tree | 9a33bbbed24d759f9de45b7c0197b055da1f131e /meta/recipes-support/vim | |
parent | fdee2d49fc9139ff7e0b5a8b1b6476224540ca57 (diff) | |
download | poky-844d54288eba16127e80e921a4e93e1aa6bbce48.tar.gz |
vim: _FORTIFY_SOURCE=2 be gone
vim will abort in many places with this setting. Replace
it with the benign _FORTIFY_SOURCE=1.
(From OE-Core rev: 18129cbaeddb3278efe9963718556e3765f06c1e)
Signed-off-by: Joe Slater <joe.slater@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/vim')
-rw-r--r-- | meta/recipes-support/vim/vim_8.2.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-support/vim/vim_8.2.bb b/meta/recipes-support/vim/vim_8.2.bb index 60946a181f..709b6ddb55 100644 --- a/meta/recipes-support/vim/vim_8.2.bb +++ b/meta/recipes-support/vim/vim_8.2.bb | |||
@@ -8,3 +8,8 @@ BBCLASSEXTEND = "native" | |||
8 | ALTERNATIVE_${PN}_append = " xxd" | 8 | ALTERNATIVE_${PN}_append = " xxd" |
9 | ALTERNATIVE_TARGET[xxd] = "${bindir}/xxd" | 9 | ALTERNATIVE_TARGET[xxd] = "${bindir}/xxd" |
10 | ALTERNATIVE_LINK_NAME[xxd] = "${bindir}/xxd" | 10 | ALTERNATIVE_LINK_NAME[xxd] = "${bindir}/xxd" |
11 | |||
12 | # We override the default in security_flags.inc because vim (not vim-tiny!) will abort | ||
13 | # in many places for _FORTIFY_SOURCE=2. Security flags become part of CC. | ||
14 | # | ||
15 | lcl_maybe_fortify = "${@oe.utils.conditional('DEBUG_BUILD','1','','-D_FORTIFY_SOURCE=1',d)}" | ||