From patchwork Wed Jun 20 23:05:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [6/6] qt4-embedded: fix QT_ARCH usage in QT_CONFIG_FLAGS Date: Wed, 20 Jun 2012 23:05:53 -0000 From: Scott Garman X-Patchwork-Id: 30369 Message-Id: <2de9f69aa427e5eb23f64c68182b874283829fb4.1340233133.git.scott.a.garman@intel.com> To: openembedded-core@lists.openembedded.org From: Anders Darander 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 --- meta/recipes-qt/qt4/qt4-embedded.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-qt/qt4/qt4-embedded.inc b/meta/recipes-qt/qt4/qt4-embedded.inc index 05803d1..9c5b4af 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 \