diff options
author | Ovidiu Panait <ovidiu.panait@windriver.com> | 2019-02-01 10:07:19 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-02-01 06:57:14 -0800 |
commit | e49842903b64ada99bd3a428c20e8f31a206f37c (patch) | |
tree | 577b9f7dfb13258eda22c77db342ad324a59e00e /meta-oe/recipes-support | |
parent | 6d9694f48092d68e8d633dfa38d4d545f124303a (diff) | |
download | meta-openembedded-e49842903b64ada99bd3a428c20e8f31a206f37c.tar.gz |
vim: Fix "--enable-gtk2-test" unrecognized option error
Fix the following build error when vim PACKAGECONFIG[gtkgui] is enabled:
...
ERROR: vim-8.1.0347-r0 do_configure: QA Issue: vim: configure was passed
unrecognised options: --enable-gtk2-test [unknown-configure-option]
ERROR: vim-8.1.0347-r0 do_configure: Fatal QA errors found, failing task.
ERROR: vim-8.1.0347-r0 do_configure: Function failed: do_qa_configure
...
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support')
-rw-r--r-- | meta-oe/recipes-support/vim/vim_8.1.0347.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/vim/vim_8.1.0347.bb b/meta-oe/recipes-support/vim/vim_8.1.0347.bb index 4de4d8e38..a561ad272 100644 --- a/meta-oe/recipes-support/vim/vim_8.1.0347.bb +++ b/meta-oe/recipes-support/vim/vim_8.1.0347.bb | |||
@@ -38,7 +38,7 @@ do_configure () { | |||
38 | PACKAGECONFIG ??= "" | 38 | PACKAGECONFIG ??= "" |
39 | PACKAGECONFIG += "${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)}" | 39 | PACKAGECONFIG += "${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)}" |
40 | 40 | ||
41 | PACKAGECONFIG[gtkgui] = "--enable-gtk2-test --enable-gui=gtk2,--enable-gui=no,gtk+," | 41 | PACKAGECONFIG[gtkgui] = "--enable-gui=gtk2,--enable-gui=no,gtk+," |
42 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," | 42 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," |
43 | PACKAGECONFIG[x11] = "--with-x,--without-x,xt," | 43 | PACKAGECONFIG[x11] = "--with-x,--without-x,xt," |
44 | PACKAGECONFIG[tiny] = "--with-features=tiny,--with-features=big,," | 44 | PACKAGECONFIG[tiny] = "--with-features=tiny,--with-features=big,," |