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:18:20 +0100 | 
| commit | abd5d5a712686a379a1a1da29d78a0f374f13e33 (patch) | |
| tree | d75f036e677c363e38bc935c3af4bdfd9aead26b | |
| parent | 5b51872ec4c2400ae60f434478f04e9aca3ccb7d (diff) | |
| download | openembedded-core-abd5d5a712686a379a1a1da29d78a0f374f13e33.tar.gz openembedded-core-abd5d5a712686a379a1a1da29d78a0f374f13e33.tar.bz2 openembedded-core-abd5d5a712686a379a1a1da29d78a0f374f13e33.zip | |
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.
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"  SRC_URI += "file://qte.sh"  QT_CONFIG_FLAGS += " \ -    -embedded ${QT_ARCH} \ +    -embedded $QT_ARCH \      -qtlibinfix ${QT_LIBINFIX} \      -plugin-gfx-transformed -plugin-gfx-qvfb -plugin-gfx-vnc -plugin-gfx-directfb \      -plugin-mouse-tslib -qt-mouse-pc -qt-mouse-qvfb -qt-mouse-linuxinput \ | 
