diff options
author | Mikko Levonmaa <mikko.levonmaa@lge.com> | 2014-02-21 14:49:56 -0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-02-22 09:08:23 +0100 |
commit | 5d4479d19ddccbab0efec2c85b646b35a2f7c2bc (patch) | |
tree | 59348197a5a45e5c5a0a10c885230a9fbd422e4d | |
parent | 5599656cda1728b7262a9ae7154759dcd40a874e (diff) | |
download | meta-qt5-5d4479d19ddccbab0efec2c85b646b35a2f7c2bc.tar.gz |
qtbase: Make it easier to change [release|debug] PACKAGECONFIG
Also add -developer-build to PACKAGECONFIG
Signed-off-by: Mikko Levonmaa <mikko.levonmaa@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-qt/qt5/qtbase.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc index 116c86f7..b4587af4 100644 --- a/recipes-qt/qt5/qtbase.inc +++ b/recipes-qt/qt5/qtbase.inc | |||
@@ -40,9 +40,11 @@ PACKAGECONFIG_FONTS ?= "" | |||
40 | PACKAGECONFIG_SYSTEM ?= "jpeg libpng zlib" | 40 | PACKAGECONFIG_SYSTEM ?= "jpeg libpng zlib" |
41 | PACKAGECONFIG_MULTIMEDIA ?= "${@base_contains('DISTRO_FEATURES', 'pulseaudio', 'pulseaudio', '', d)}" | 41 | PACKAGECONFIG_MULTIMEDIA ?= "${@base_contains('DISTRO_FEATURES', 'pulseaudio', 'pulseaudio', '', d)}" |
42 | PACKAGECONFIG_DISTRO ?= "" | 42 | PACKAGECONFIG_DISTRO ?= "" |
43 | # Either release or debug, can be overridden in bbappends | ||
44 | PACKAGECONFIG_RELEASE ?= "release" | ||
43 | 45 | ||
44 | PACKAGECONFIG ??= " \ | 46 | PACKAGECONFIG ??= " \ |
45 | release \ | 47 | ${PACKAGECONFIG_RELEASE} \ |
46 | dbus \ | 48 | dbus \ |
47 | udev \ | 49 | udev \ |
48 | evdev \ | 50 | evdev \ |
@@ -58,6 +60,7 @@ PACKAGECONFIG ??= " \ | |||
58 | " | 60 | " |
59 | 61 | ||
60 | PACKAGECONFIG[release] = "-release,-debug" | 62 | PACKAGECONFIG[release] = "-release,-debug" |
63 | PACKAGECONFIG[developer] = "-developer-build" | ||
61 | PACKAGECONFIG[sm] = "-sm,-no-sm" | 64 | PACKAGECONFIG[sm] = "-sm,-no-sm" |
62 | PACKAGECONFIG[tests] = ",-nomake tests" | 65 | PACKAGECONFIG[tests] = ",-nomake tests" |
63 | PACKAGECONFIG[examples] = ",-nomake examples" | 66 | PACKAGECONFIG[examples] = ",-nomake examples" |