From: Anders Darander Date: Sun, 17 Jun 2012 11:31:46 +0000 (+0200) Subject: qt4-embedded: fix QT_ARCH usage in QT_CONFIG_FLAGS X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=8394dda5f12157c88005a788cd35421f498c9b82;p=openembedded-core.git 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 Signed-off-by: Richard Purdie --- 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 \