diff options
author | Herve Jourdain <herve.jourdain@neuf.fr> | 2017-01-19 21:07:47 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-02-02 21:16:21 +0100 |
commit | 8092d985b83999c0b9d3d6bfdac5150dec58a967 (patch) | |
tree | ebc175a4bc14ae496ee9f4c103dd70e2df24daf7 | |
parent | 00a9e0a887a83aa1eafd73c09296aa157898a1f7 (diff) | |
download | meta-qt5-8092d985b83999c0b9d3d6bfdac5150dec58a967.tar.gz |
qtbase: create empty oe-device-extra.pri
During configure, it complains it can't find oe-device-extra.pri,
but it doesn't result in any error. Fix it, though, just in case.
Signed-off-by: Herve Jourdain <herve.jourdain@neuf.fr>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-qt/qt5/qtbase_git.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb index 354a01ce..5db9aad1 100644 --- a/recipes-qt/qt5/qtbase_git.bb +++ b/recipes-qt/qt5/qtbase_git.bb | |||
@@ -130,6 +130,9 @@ QT_CONFIG_FLAGS += " \ | |||
130 | " | 130 | " |
131 | 131 | ||
132 | do_configure() { | 132 | do_configure() { |
133 | # Avoid qmake error "Cannot read [...]/usr/lib/qt5/mkspecs/oe-device-extra.pri: No such file or directory" during configuration | ||
134 | touch ${S}/mkspecs/oe-device-extra.pri | ||
135 | |||
133 | ${S}/configure -v \ | 136 | ${S}/configure -v \ |
134 | -opensource -confirm-license \ | 137 | -opensource -confirm-license \ |
135 | -sysroot ${STAGING_DIR_TARGET} \ | 138 | -sysroot ${STAGING_DIR_TARGET} \ |