summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-14 13:29:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-26 15:30:40 +0000
commit900b3f07820816c81ebb31abe417a60819a4c480 (patch)
tree950da043f84ff600bd1d62f463973fb8edf955b0
parent95c5a1a2f69cdcf992c0977b0fcdd98ae17f59e2 (diff)
downloadpoky-900b3f07820816c81ebb31abe417a60819a4c480.tar.gz
vim: Improve determinism
Add a couple of configure options to avoid determism issues in the vim build. This can happen due to the addition of glib-2.0 to the native sysroot through later task additions to the sysroot through indirect dependencies. (From OE-Core rev: d1ba11457ebfdbdc0b717b6c5798bb9930e71c88) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 914f86054f5ea0a115767c1b3d9cdb4c4ef9545b) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-support/vim/vim.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-support/vim/vim.inc b/meta/recipes-support/vim/vim.inc
index 4d2886c19e..1ea40e5e7f 100644
--- a/meta/recipes-support/vim/vim.inc
+++ b/meta/recipes-support/vim/vim.inc
@@ -68,8 +68,10 @@ EXTRA_OECONF = " \
68 --disable-gtktest \ 68 --disable-gtktest \
69 --disable-xim \ 69 --disable-xim \
70 --disable-netbeans \ 70 --disable-netbeans \
71 --disable-desktop-database-update \
71 --with-tlib=ncurses \ 72 --with-tlib=ncurses \
72 ac_cv_small_wchar_t=no \ 73 ac_cv_small_wchar_t=no \
74 ac_cv_path_GLIB_COMPILE_RESOURCES=no \
73 vim_cv_getcwd_broken=no \ 75 vim_cv_getcwd_broken=no \
74 vim_cv_memmove_handles_overlap=yes \ 76 vim_cv_memmove_handles_overlap=yes \
75 vim_cv_stat_ignores_slash=no \ 77 vim_cv_stat_ignores_slash=no \