| Submitter | Anders Darander |
|---|---|
| Date | June 17, 2012, 11:31 a.m. |
| Message ID | <5b10b328ed39fd43464ed1f97fdc8964237252e7.1339932526.git.anders@chargestorm.se> |
| Download | mbox | patch |
| Permalink | /patch/30047/ |
| State | Accepted |
| Commit | abd5d5a712686a379a1a1da29d78a0f374f13e33 |
| Headers | show |
Comments
On Sun, 2012-06-17 at 13:31 +0200, Anders Darander wrote: > 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> > --- > 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 \ Merged to master, thanks. cc'ing Scott for denzil... Cheers, Richard
Patch
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 \
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> --- meta/recipes-qt/qt4/qt4-embedded.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)