diff options
author | Samuli Piippo <samuli.piippo@theqtcompany.com> | 2016-01-18 13:10:30 +0200 |
---|---|---|
committer | Samuli Piippo <samuli.piippo@theqtcompany.com> | 2016-01-20 14:19:25 +0000 |
commit | 7dace93a31689e3698b4eb86a824690966842fe0 (patch) | |
tree | e61a54ca9bef0f8ff4c7de7a69e6bbd8d4d2113b | |
parent | 31ffad5e63720dda22b1a35d29f9cc64b9b20a76 (diff) | |
download | meta-boot2qt-7dace93a31689e3698b4eb86a824690966842fe0.tar.gz |
VKB: use PACKAGECONFIG to modify build configuration
Change-Id: Id806ae679ae83936f6de75a294d717392f89f2eb
Reviewed-by: Teemu Holappa <teemu.holappa@theqtcompany.com>
-rw-r--r-- | recipes-qt/qt5-addons/qtvirtualkeyboard_git.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes-qt/qt5-addons/qtvirtualkeyboard_git.bb b/recipes-qt/qt5-addons/qtvirtualkeyboard_git.bb index 6187a68..13f02b6 100644 --- a/recipes-qt/qt5-addons/qtvirtualkeyboard_git.bb +++ b/recipes-qt/qt5-addons/qtvirtualkeyboard_git.bb | |||
@@ -31,7 +31,12 @@ SRCREV = "91273471991b8f1097780f8171f19e7efc622be5" | |||
31 | 31 | ||
32 | DEPENDS = "qtbase qtdeclarative qtsvg hunspell" | 32 | DEPENDS = "qtbase qtdeclarative qtsvg hunspell" |
33 | 33 | ||
34 | EXTRA_QMAKEVARS_PRE += "CONFIG+=disable-desktop CONFIG+=lang-all CONFIG+=lipi-toolkit" | 34 | PACKAGECONFIG ?= "lipi-toolkit lang-all" |
35 | PACKAGECONFIG[lipi-toolkit] = "CONFIG+=lipi-toolkit" | ||
36 | PACKAGECONFIG[lang-all] = "CONFIG+=lang-all" | ||
37 | |||
38 | EXTRA_QMAKEVARS_PRE += "${EXTRA_OECONF}" | ||
39 | EXTRA_QMAKEVARS_PRE += "${@base_contains('DISTRO_FEATURES', 'x11', '', 'CONFIG+=disable-desktop', d)}" | ||
35 | 40 | ||
36 | PACKAGES += "${PN}-dictionaries" | 41 | PACKAGES += "${PN}-dictionaries" |
37 | RRECOMMENDS_${PN} += "${PN}-dictionaries" | 42 | RRECOMMENDS_${PN} += "${PN}-dictionaries" |