diff options
author | Anders Darander <anders@chargestorm.se> | 2012-06-17 13:31:46 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-18 13:24:58 +0100 |
commit | 0529f93440b2d67af8b2272b4d18220ae94e91d8 (patch) | |
tree | 19fc931731388ed9ef6fe786b6dccbfea67d57fa | |
parent | bbd25aa3f20fa28fe7c461d5af15b9b2ad499495 (diff) | |
download | poky-0529f93440b2d67af8b2272b4d18220ae94e91d8.tar.gz |
qt4-embedded: fix QT_ARCH usage in QT_CONFIG_FLAGS
After the change to shell style functions (from python style), the
ability to use oe_filter_out on QT_CONFIG_FLAGS got broken.
This patch solves that by referring to QT_ARCH in a more correct way.
(From OE-Core rev: abd5d5a712686a379a1a1da29d78a0f374f13e33)
Signed-off-by: Anders Darander <anders@chargestorm.se>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-qt/qt4/qt4-embedded.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-qt/qt4/qt4-embedded.inc b/meta/recipes-qt/qt4/qt4-embedded.inc index 05803d15e7..9c5b4af93d 100644 --- a/meta/recipes-qt/qt4/qt4-embedded.inc +++ b/meta/recipes-qt/qt4/qt4-embedded.inc | |||
@@ -10,7 +10,7 @@ QT_BASE_LIB ?= "libqt-embedded" | |||
10 | SRC_URI += "file://qte.sh" | 10 | SRC_URI += "file://qte.sh" |
11 | 11 | ||
12 | QT_CONFIG_FLAGS += " \ | 12 | QT_CONFIG_FLAGS += " \ |
13 | -embedded ${QT_ARCH} \ | 13 | -embedded $QT_ARCH \ |
14 | -qtlibinfix ${QT_LIBINFIX} \ | 14 | -qtlibinfix ${QT_LIBINFIX} \ |
15 | -plugin-gfx-transformed -plugin-gfx-qvfb -plugin-gfx-vnc -plugin-gfx-directfb \ | 15 | -plugin-gfx-transformed -plugin-gfx-qvfb -plugin-gfx-vnc -plugin-gfx-directfb \ |
16 | -plugin-mouse-tslib -qt-mouse-pc -qt-mouse-qvfb -qt-mouse-linuxinput \ | 16 | -plugin-mouse-tslib -qt-mouse-pc -qt-mouse-qvfb -qt-mouse-linuxinput \ |