summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Darander <anders@chargestorm.se>2012-06-17 13:31:46 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-21 11:59:35 +0100
commita707b3269c1e493340d63345075ca736d6e7375b (patch)
treeb0c96c9b0dff0b3f1214f97acaa756a719f35afa
parent0d3748ca5df80c891d37e3f8150ea158269caea6 (diff)
downloadpoky-a707b3269c1e493340d63345075ca736d6e7375b.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: 8394dda5f12157c88005a788cd35421f498c9b82) 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.inc2
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"
10SRC_URI += "file://qte.sh" 10SRC_URI += "file://qte.sh"
11 11
12QT_CONFIG_FLAGS += " \ 12QT_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 \