diff options
author | Jonathan Liu <net147@gmail.com> | 2016-08-23 18:15:36 +1000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-08-31 19:12:08 +0200 |
commit | 5041f270892c24633d44139ff2679ec0ee9f270f (patch) | |
tree | 921526dee367bbddad695c7e9d28d1c060d28309 | |
parent | c2ddf663e22937cb64a7fb343892806d473b978f (diff) | |
download | meta-qt5-5041f270892c24633d44139ff2679ec0ee9f270f.tar.gz |
qtbase: avoid QA warning if PACKAGECONFIG_RELEASE = "debug"
If PACKAGECONFIG_RELEASE = "debug", an invalid PACKAGECONFIG QA
warning is shown. To avoid this, we add dummy debug PACKAGECONFIG.
Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-qt/qt5/qtbase_git.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb index c82195db..ee41db54 100644 --- a/recipes-qt/qt5/qtbase_git.bb +++ b/recipes-qt/qt5/qtbase_git.bb | |||
@@ -68,6 +68,7 @@ PACKAGECONFIG ?= " \ | |||
68 | " | 68 | " |
69 | 69 | ||
70 | PACKAGECONFIG[release] = "-release,-debug" | 70 | PACKAGECONFIG[release] = "-release,-debug" |
71 | PACKAGECONFIG[debug] = "" | ||
71 | PACKAGECONFIG[developer] = "-developer-build" | 72 | PACKAGECONFIG[developer] = "-developer-build" |
72 | PACKAGECONFIG[sm] = "-sm,-no-sm" | 73 | PACKAGECONFIG[sm] = "-sm,-no-sm" |
73 | PACKAGECONFIG[tests] = "-make tests,-nomake tests" | 74 | PACKAGECONFIG[tests] = "-make tests,-nomake tests" |